From 80dcac43d2de36cb9e865cbff51599d37cde0bf6 Mon Sep 17 00:00:00 2001 From: Moray Grieve Date: Thu, 22 Jun 2023 16:16:00 +0100 Subject: [PATCH] Correct retention yaml (#1352) --- .github/workflows/build-pr.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index f99c549125..642562d5c7 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -33,6 +33,7 @@ jobs: - name: Store simulation logs uses: actions/upload-artifact@v3 + if: always() with: name: ci-logs path: | @@ -40,5 +41,6 @@ jobs: integration/.build/noderunner/noderunner-*.txt integration/.build/wallet_extension/wal-ext-*.txt integration/.build/eth2/* - if: always() # Ensures the artifacts are created even if the tests fail. - retention-days: 2 + retention-days: 2 + +