This repository was archived by the owner on Feb 11, 2026. It is now read-only.
udpate docs link #126
Workflow file for this run
This file contains hidden or 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: mdBook | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build-and-deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build book | |
| run: | | |
| cargo install mdbook | |
| pushd docs-mdbook | |
| mdbook build | |
| mdbook test | |
| popd | |
| - name: Deploy website | |
| if: github.event_name == 'push' | |
| uses: JamesIves/github-pages-deploy-action@4.1.4 | |
| with: | |
| branch: gh-pages | |
| folder: docs-mdbook/book |