feat: fix ocr typo in 06 #17
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: github pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jontze/action-mdbook@v1 | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
use-linkcheck: true | |
use-mermaid: false | |
use-toc: true | |
use-opengh: true | |
- name: Show mdbook version | |
run: mdbook --version | |
- name: Show linkchecker version | |
run: mdbook-linkcheck --version | |
- name: Show toc version | |
run: mdbook-toc --version | |
- name: Show open-on-gh version | |
run: mdbook-open-on-gh --version | |
- name: Build | |
run: mdbook build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
if: ${{ github.ref == 'refs/heads/master' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book |