We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c678b commit c6c1f30Copy full SHA for c6c1f30
.github/workflows/build.yml
@@ -69,7 +69,8 @@ jobs:
69
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
70
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
71
72
- - name: Publish unit test results
73
- uses: EnricoMi/[email protected]
+ - name: Publish Test Report
+ uses: mikepenz/action-junit-report@v2
74
+ if: always() # always run even if the previous step fails
75
with:
- files: target/**/TEST**.xml
76
+ report_paths: 'target/**/TEST**.xml'
0 commit comments