feat(aura): new config warn_unknowns
to control the display of unkn…
#245
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: Book | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "book/**" | |
jobs: | |
book: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install mdbook | |
uses: peaceiris/[email protected] | |
with: | |
mdbook-version: "0.4.40" | |
- name: Generate book from markdown | |
run: | | |
cd book | |
mdbook build | |
- name: Publish HTML | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./book/book/ |