We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e459d commit 160b17cCopy full SHA for 160b17c
.github/workflows/gradle.yml
@@ -26,9 +26,16 @@ jobs:
26
- name: Upload built jar file
27
uses: actions/upload-artifact@v4
28
with:
29
- name: ${{ github.event.repository.name }}
+ name: ${{ github.event.repository.name }}-test
30
path: build/libs/${{ github.event.repository.name }}.jar
31
32
+ - name: Upload test report
33
+ if: always() # ensures this runs even if tests fail
34
+ uses: actions/upload-artifact@v4
35
+ with:
36
+ name: test-report
37
+ path: build/reports/tests/test/
38
+
39
- uses: "marvinpinto/action-automatic-releases@latest"
40
41
repo_token: "${{ secrets.GITHUB_TOKEN }}"
0 commit comments