Skip to content

Commit

Permalink
Upload test artifacts even if tests failed
Browse files Browse the repository at this point in the history
  • Loading branch information
prdoyle committed Feb 7, 2024
1 parent afd0da8 commit c8f3c23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:
ORG_GRADLE_PROJECT_signingKey: ${{secrets.GPG_PRIVATE_KEY}}
ORG_GRADLE_PROJECT_signingPassword: ${{secrets.GPG_PASSWORD}}

- uses: actions/upload-artifact@v4
- name: Upload test results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: reports
path: build/reports/

0 comments on commit c8f3c23

Please sign in to comment.