]> git.lizzy.rs Git - rust.git/blobdiff - .github/workflows/rustdoc.yaml
Auto merge of #13441 - Veykril:sysroot-logging, r=Veykril
[rust.git] / .github / workflows / rustdoc.yaml
index 1f4a3cfd3c5e17dbee6e478fc97d7326ff8ecf6d..05f3e254e5f5aa5e0a10c643dd720be7dc6f0f58 100644 (file)
@@ -4,31 +4,31 @@ on:
    branches:
    - master
 
+env:
+  CARGO_INCREMENTAL: 0
+  CARGO_NET_RETRY: 10
+  RUSTFLAGS: "-D warnings -W unreachable-pub"
+  RUSTUP_MAX_RETRIES: 10
+
 jobs:
   rustdoc:
+    if: github.repository == 'rust-lang/rust-analyzer'
     runs-on: ubuntu-latest
-    env:
-      RUSTFLAGS: -D warnings
-      CARGO_INCREMENTAL: 0
 
     steps:
     - name: Checkout repository
-      uses: actions/checkout@v1
+      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
 
     - name: Deploy Docs
       uses: peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad # v3.4.0
+      with:
         github_token: ${{ secrets.GITHUB_TOKEN }}
         publish_branch: gh-pages
-        publish_dir: ./book
+        publish_dir: ./target/doc
         force_orphan: true