Skip to content

Bump actions/checkout from 5 to 6 (#95) #110

Bump actions/checkout from 5 to 6 (#95)

Bump actions/checkout from 5 to 6 (#95) #110

Workflow file for this run

name: docs
on:
push:
branches:
- main
jobs:
docs:
name: build rustdocs and put them on github pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
override: true
- name: Build Documentation
run: cargo doc --all
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
force_orphan: true