From 0c270f8343f882fac4a8b167b418d079dfc69f8c Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Thu, 17 Feb 2022 18:33:20 +0100 Subject: [PATCH] #661: JUnit test results take 2 (cherry picked from commit c06d47d1235de088576d72513127493355631d4a) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bd01359..763d9cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: run: mvn test - name: Publish Test Report uses: mikepenz/action-junit-report@v2 - if: !cancelled() + if: ${{ !cancelled() }} with: report_paths: "**/target/surefire-reports/TEST*.xml" @@ -54,7 +54,7 @@ jobs: run: mvn test - name: Publish Test Report uses: mikepenz/action-junit-report@v2 - if: !cancelled() + if: ${{ !cancelled() }} with: report_paths: "**/target/surefire-reports/TEST*.xml"