From 7ef9f75bf09478f3da10523f2eb8d33030414b3b Mon Sep 17 00:00:00 2001 From: Scott Kurz Date: Sat, 24 Feb 2024 09:45:35 -0500 Subject: [PATCH] More Signed-off-by: Scott Kurz --- .github/workflows/run-regression-tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/run-regression-tests.yml b/.github/workflows/run-regression-tests.yml index 9995588c..e7c89fbe 100644 --- a/.github/workflows/run-regression-tests.yml +++ b/.github/workflows/run-regression-tests.yml @@ -25,6 +25,7 @@ jobs: runs-on: ${{ matrix.os }} steps: + # Checkout the eclipse plugin repository. - name: 'Setup: Checkout plugin' uses: actions/checkout@v2 @@ -41,10 +42,12 @@ jobs: - run: | mkdir logs find tests -type f -name "*.log" -exec cp {} logs \; + if: always() # save logs - name: Upload Logs uses: actions/upload-artifact@v2 + if: always() with: name: test-app-logs path: logs