From 3c24f576d7e1655da51bac4a6f80ded898fb9840 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 25 Aug 2024 11:57:28 -0700 Subject: [PATCH] Run upload-artifact action regardless of previous step failure --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31c7c8d472..95c6d6fdad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,6 +29,7 @@ jobs: components: llvm-tools, rustc-dev - run: cargo test --all-features --release --tests - uses: actions/upload-artifact@v4 + if: always() with: name: Cargo.lock path: Cargo.lock