X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.github%2Fworkflows%2Frustdoc.yaml;h=05f3e254e5f5aa5e0a10c643dd720be7dc6f0f58;hb=82ac6f7d4835c5cc27b5be92fee00200dbba43bb;hp=897f64df04b3ceff460904911da199c16261d5b4;hpb=cb04f0c019bdd77406a7feb6ae7f4a17924d0693;p=rust.git diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index 897f64df04b..05f3e254e5f 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml @@ -12,19 +12,15 @@ env: jobs: rustdoc: + if: github.repository == 'rust-lang/rust-analyzer' runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install Rust toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - override: true - components: rustfmt, rust-src + run: rustup update --no-self-update stable - name: Build Documentation run: cargo doc --all --no-deps