fix: typo #121
Workflow file for this run
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: 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/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs-mdbook/book |