From 379e30b291dbd6a793653b88905ab734448af5b1 Mon Sep 17 00:00:00 2001 From: oseoin Date: Mon, 24 Jun 2024 10:41:27 +0100 Subject: [PATCH] Skip upload test results on skipped tests (#5827) --- .github/workflows/setup-smoke.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/setup-smoke.yml b/.github/workflows/setup-smoke.yml index 8298c9c019..0fddf00ef9 100644 --- a/.github/workflows/setup-smoke.yml +++ b/.github/workflows/setup-smoke.yml @@ -164,4 +164,4 @@ jobs: with: name: ${{ steps.smoke-tests.outputs.test-results-name }} path: ${{ steps.smoke-tests.outputs.test-results-path }} - if: always() + if: ${{ success() || failure() }}