From 6787f8eb1d1cae70864814e6e6b2fd9e9f69e63b Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Fri, 12 Jan 2024 07:24:40 -0800 Subject: [PATCH] Always upload test results --- .github/actions/test/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/test/action.yml b/.github/actions/test/action.yml index 5ede81264..d36b8b97f 100644 --- a/.github/actions/test/action.yml +++ b/.github/actions/test/action.yml @@ -80,6 +80,7 @@ runs: run: dotnet test ./_tests/Sonarr.*.Test.dll --filter "${{ inputs.filter }}" --logger trx --results-directory "${{ env.RESULTS_NAME }}" - name: Upload Test Results + if: ${{ !cancelled() }} uses: actions/upload-artifact@v4 with: name: results-${{ env.RESULTS_NAME }}