Skip to content

chore(ci): diversify replay repos (#60) #51

chore(ci): diversify replay repos (#60)

chore(ci): diversify replay repos (#60) #51

Workflow file for this run

name: rustdoc
permissions:
contents: write
on:
push:
branches: [ master ]
env:
CARGO_INCREMENTAL: 0
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
CLICOLOR: 1
CI: 1
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
rustdoc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- run: rustup toolchain install stable --profile minimal
- run: cargo doc --no-deps --all-features
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
force_orphan: true