Skip to content

refactor: use atomic boolean for continue flag (#103) #34

refactor: use atomic boolean for continue flag (#103)

refactor: use atomic boolean for continue flag (#103) #34

Workflow file for this run

name: deploy-docs
on:
push:
branches: [ main ]
jobs:
deploy:
name: deploy-to-gh-pages
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- run: git config user.name github-actions
- run: git config user.email [email protected]
- run: cd docs && npm ci && npm run build
- uses: crazy-max/ghaction-github-pages@v2
with:
target_branch: gh-pages
build_dir: docs/build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}