Don't trim on $ #207
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: Build docs | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup mdBook | |
uses: peaceiris/actions-mdbook@v1 | |
with: | |
mdbook-version: '0.4.28' | |
- run: mdbook build | |
- name: Deploy latest | |
uses: peaceiris/actions-gh-pages@v3 | |
# Only push if this is main, otherwise we just want to build | |
if: github.ref == 'refs/heads/develop' | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
keep_files: true | |
publish_dir: ./book | |
destination_dir: ./latest |