Skip to content

Merge pull request #4 from TrayRacers/TRY-39-GH-rustdoc-Action #1

Merge pull request #4 from TrayRacers/TRY-39-GH-rustdoc-Action

Merge pull request #4 from TrayRacers/TRY-39-GH-rustdoc-Action #1

Workflow file for this run

name: rustdoc
on:
push:
branches:
- main
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTFLAGS: "-D warnings -W unreachable-pub"
RUSTUP_MAX_RETRIES: 10
jobs:
rustdoc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Rust toolchain
run: rustup update --no-self-update stable
- name: Build Documentation
run: cargo doc --no-deps
- name: Deploy Docs
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: rustdoc
publish_dir: ./target/doc
force_orphan: true