mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
38 lines
940 B
YAML
38 lines
940 B
YAML
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:
|
|
if: github.repository == 'kaist-cp/cs220'
|
|
runs-on: [self-hosted, ubuntu-22.04]
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4.1.1
|
|
|
|
- name: Install Rustup
|
|
run: if ! command -v rustup &>/dev/null; then (curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y); fi
|
|
|
|
- name: Install Rust toolchain
|
|
run: source "$HOME/.cargo/env"; rustup update --no-self-update stable
|
|
|
|
- name: Build Documentation
|
|
run: source "$HOME/.cargo/env"; cargo doc --all
|
|
|
|
- name: Deploy Docs
|
|
uses: peaceiris/actions-gh-pages@v4.0.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_branch: gh-pages
|
|
publish_dir: ./target/doc
|
|
force_orphan: true
|