X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.github%2Fworkflows%2Frustdoc.yaml;h=05f3e254e5f5aa5e0a10c643dd720be7dc6f0f58;hb=00b0089615a38bb552360d6c9495d3972fdfd97d;hp=ac69adb947716455d3ff61e7d11ac396c3622acb;hpb=2fb6f5e46a5f53a78c2f750dd3c8e79dd418c4c9;p=rust.git diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index ac69adb9477..05f3e254e5f 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml @@ -12,20 +12,15 @@ env: jobs: rustdoc: - if: github.repository == 'rust-analyzer/rust-analyzer' + 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