From 911d2f8f4f7fd551f64bf7f6b190f5a6864353b9 Mon Sep 17 00:00:00 2001 From: Christopher Tubbs Date: Mon, 12 Oct 2020 22:02:43 -0400 Subject: [PATCH] Upload test logs on build failure --- .github/workflows/maven.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index 91530bf..7db021c 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -56,18 +56,21 @@ jobs: env: MAVEN_OPTS: -Djansi.force=true - name: Upload unit test results + if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: surefire-reports-${{ matrix.profile.name }} path: ./**/target/surefire-reports/ if-no-files-found: ignore - name: Upload integration test results + if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: failsafe-reports-${{ matrix.profile.name }} path: ./**/target/failsafe-reports/ if-no-files-found: ignore - name: Upload mini test logs + if: ${{ failure() }} uses: actions/upload-artifact@v2 with: name: mini-tests-logs-${{ matrix.profile.name }}