From 174747213e7e3942144a7d8f9bbbaef6c7ae0682 Mon Sep 17 00:00:00 2001 From: kaklakariada Date: Tue, 22 Nov 2022 16:59:33 +0100 Subject: [PATCH] Deactivate scacap/action-surefire-report on macos This fails because of https://github.com/ScaCap/action-surefire-report/issues/95 / https://github.com/ScaCap/action-surefire-report/issues/85 --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 68e9fbc6..1f1769c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,7 +70,8 @@ jobs: - name: Publish Test Report for Java ${{ matrix.java }} on ${{ matrix.os }} uses: scacap/action-surefire-report@v1 - if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' }} + # Deactivated on macos-latest because of https://github.com/ScaCap/action-surefire-report/issues/95 + if: ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]' && matrix.os != 'macos-latest' }} with: report_paths: '**/target/surefire-reports/TEST-*.xml' github_token: ${{ secrets.GITHUB_TOKEN }}