diff options
| author | Jakub Beránek <berykubik@gmail.com> | 2025-01-09 22:38:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-09 22:38:27 +0100 |
| commit | ce0d5c1c0a881fd78a32f6573fcda775046bbdf5 (patch) | |
| tree | 88123034fdb1cdec9a8b51d65084d96f7e70010b /src | |
| parent | 42c284edec1d3b645bc08666bdbb329c7709b578 (diff) | |
| parent | b4297e729f98e2b44b47019157c0de6577996786 (diff) | |
| download | rust-ce0d5c1c0a881fd78a32f6573fcda775046bbdf5.tar.gz rust-ce0d5c1c0a881fd78a32f6573fcda775046bbdf5.zip | |
Merge pull request #2203 from camelid/ci-fix
ci: Remove incorrect use of `continue-on-error`
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/rustc-dev-guide/.github/workflows/ci.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/doc/rustc-dev-guide/.github/workflows/ci.yml b/src/doc/rustc-dev-guide/.github/workflows/ci.yml index 3c45ad16488..006bcce44b3 100644 --- a/src/doc/rustc-dev-guide/.github/workflows/ci.yml +++ b/src/doc/rustc-dev-guide/.github/workflows/ci.yml @@ -59,11 +59,10 @@ jobs: - name: Check build run: ENABLE_LINKCHECK=1 mdbook build - continue-on-error: true - name: Save cached Linkcheck id: cache-linkcheck-save - if: github.event_name == 'schedule' + if: ${{ !cancelled() && github.event_name == 'schedule' }} uses: actions/cache/save@v4 with: path: book/linkcheck/cache.json |
