document mip_chunk read options #22
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: Deploy Docs | |
on: | |
push: | |
branches: [main] | |
paths: | |
- ".github/workflows/deploy_docs.yml" | |
- "src/**" | |
- "Cargo.toml" | |
permissions: | |
contents: write | |
jobs: | |
deploy_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Nightly | |
run: | | |
rustup toolchain install nightly --component clippy | |
rustup override set nightly | |
- name: Build | |
run: cargo doc --no-deps | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
force_orphan: true | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ${{ github.workspace }}/target/doc/ |