Skip to content

build(deps): bump actions/checkout from 2 to 4 (#200) #108

build(deps): bump actions/checkout from 2 to 4 (#200)

build(deps): bump actions/checkout from 2 to 4 (#200) #108

# Deploys the latest development documentation to Github Pages
name: Deploy documentation
on:
push:
branches: [ dev ]
env:
CARGO_TERM_COLOR: always
jobs:
deploy_documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
profile: minimal
- name: Download cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: documentation
- name: Build documentation
run: cargo +nightly doc --no-deps
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
force_orphan: true