Skip to content

doc: update screenshots #31

doc: update screenshots

doc: update screenshots #31

Workflow file for this run

name: Build dev documentations
on:
push:
paths:
- 'manual/**'
- '.github/workflows/doc.yml'
- 'swagger.json'
branches:
- main
workflow_dispatch:
jobs:
build_dev_manual:
name: Build developer documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Generate documentation website
id: doc
run: |
cp ./swagger.json ./manual/static/swagger/
cd manual
npm ci
npm run build
rm -rf ../docs
mv ./build ../docs
- name: Commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "izanami-release-bot"
git add --all
git commit -am "Update dev documentation"
- name: Push documentation
uses: ad-m/github-push-action@master
with:
branch: main
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN}}