fix: username conf not taken into account #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}} |