From 91586c87c0600364dd5756dd814dc33e38f922c7 Mon Sep 17 00:00:00 2001 From: Scott Kurz Date: Sat, 24 Feb 2024 10:37:21 -0500 Subject: [PATCH] just on failure Signed-off-by: Scott Kurz --- .github/workflows/run-regression-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-regression-tests.yml b/.github/workflows/run-regression-tests.yml index e7c89fbe..dc73dbbb 100644 --- a/.github/workflows/run-regression-tests.yml +++ b/.github/workflows/run-regression-tests.yml @@ -9,7 +9,8 @@ jobs: strategy: fail-fast: false matrix: - runtime: [ linux, mac, windows ] + runtime: [ linux ] + #runtime: [ linux, mac, windows ] targetPlatform: [ 4Q2023 ] include: - runtime: linux @@ -42,12 +43,12 @@ jobs: - run: | mkdir logs find tests -type f -name "*.log" -exec cp {} logs \; - if: always() + if: failure() # save logs - name: Upload Logs uses: actions/upload-artifact@v2 - if: always() + if: failure() with: name: test-app-logs path: logs