From fd140eadf58378a80aeae464a04a7155d7510760 Mon Sep 17 00:00:00 2001 From: Greg Brail Date: Tue, 24 Sep 2024 00:02:40 -0700 Subject: [PATCH] Always upload the logs! --- .github/workflows/gradle.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index c77fa062fb..fa4b3bf813 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -36,6 +36,7 @@ jobs: ./gradlew check - name: Upload results Java 21 uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + if: ${{ always() }} with: name: reports-java-21 path: '*/build/reports' @@ -46,6 +47,7 @@ jobs: ./gradlew check - name: Upload results Java 17 uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + if: ${{ always() }} with: name: reports-java-17 path: '*/build/reports' @@ -56,6 +58,7 @@ jobs: ./gradlew check - name: Upload results Java 11 uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0 + if: ${{ always() }} with: name: reports-java-11 path: '*/build/reports'