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 730cf3d commit 0376467Copy full SHA for 0376467
1 file changed
.github/workflows/build.yml
@@ -23,11 +23,13 @@ jobs:
23
uses: gradle/gradle-build-action@v2
24
- name: Build
25
run: ./gradlew build
26
- - name : Test Summary
27
- uses : EnricoMi/publish-unit-test-result-action@v2.11.0
28
- with :
29
- junit_files : "**/build/test-results/test/TEST-*.xml"
30
- if : always()
+ - name: Upload Test Results
+ if: always()
+ uses: actions/upload-artifact@v4
+ with:
+ name: Test Results
31
+ path: |
32
+ **/build/test-results/test/TEST-*.xml
33
- name: Determine Status
34
run: |
35
if [ "$(./gradlew properties | awk '/^version:/ { print $2; }' | grep '\-SNAPSHOT')" ]; then
0 commit comments