diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d1a9269..1734d71 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,4 +35,11 @@ jobs: - name: Build Artifacts And Publish run: | export GRADLE_OPTS="-Dorg.gradle.internal.http.debug=true" - ./gradlew buildAllPlatformsAndPublish --info --stacktrace --scan \ No newline at end of file + ./gradlew buildAllPlatformsAndPublish --info --stacktrace --scan + + - name: Upload Problems Report + if: failure() # Only upload if the build fails + uses: actions/upload-artifact@v3 + with: + name: problems-report + path: build/reports/problems/problems-report.html \ No newline at end of file