feat: replace the --release flag with a generic --profile flag (#163) #99
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 | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-20.04 | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.3 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1.2.0 | |
with: | |
mdbook-version: '0.3.5' | |
- run: mdbook build book | |
- name: Build and Deploy | |
uses: JamesIves/github-pages-deploy-action@v4.4.3 | |
with: | |
folder: target/book |