]> git.lizzy.rs Git - rust.git/blob - .github/workflows/rustdoc.yaml
Remove redundant --pre-release flag from publish
[rust.git] / .github / workflows / rustdoc.yaml
1 name: rustdoc
2 on:
3   push:
4    branches:
5    - master
6
7 env:
8   CARGO_INCREMENTAL: 0
9   CARGO_NET_RETRY: 10
10   RUSTFLAGS: "-D warnings -W unreachable-pub"
11   RUSTUP_MAX_RETRIES: 10
12
13 jobs:
14   rustdoc:
15     if: github.repository == 'rust-lang/rust-analyzer'
16     runs-on: ubuntu-latest
17
18     steps:
19     - name: Checkout repository
20       uses: actions/checkout@v3
21
22     - name: Install Rust toolchain
23       run: rustup update --no-self-update stable
24
25     - name: Build Documentation
26       run: cargo doc --all --no-deps
27
28     - name: Deploy Docs
29       uses: peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad # v3.4.0
30       with:
31         github_token: ${{ secrets.GITHUB_TOKEN }}
32         publish_branch: gh-pages
33         publish_dir: ./target/doc
34         force_orphan: true