Skip to content

fix deploy

fix deploy #3

Workflow file for this run

name: Deploy documentation
on:
push:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly
- run: cargo +nightly doc --no-deps
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: "./target/doc"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3