rename OSMFilter to SkyFilter #13
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: Publish Docs | |
on: | |
push: | |
paths: | |
- docs/** | |
- .github/workflows/docs.yml | |
branches: [trunk] | |
jobs: | |
build: | |
name: Build and Deploy Documentation | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4" mdbook) | |
- run: mdbook build docs && mdbook test docs | |
- uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: docs/book |