File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 35
35
# The content here needs to be the values of the public and secret key pair
36
36
JRELEASER_GPG_PUBLIC_KEY : ${{ secrets.gpgPublicKey }}
37
37
JRELEASER_GPG_SECRET_KEY : ${{ secrets.gpgSecretKey }}
38
- run : ./gradlew jreleaserDeploy
38
+ run : ./gradlew jreleaserDeploy
39
+ - name : Store JReleaser Logs
40
+ if : failure()
41
+ uses : actions/upload-artifact@v4
42
+ with :
43
+ name : jreleaser
44
+ path : build/jreleaser
45
+ - name : Store Reports
46
+ if : failure()
47
+ uses : actions/upload-artifact@v4
48
+ with :
49
+ name : reports
50
+ path : build/reports
Original file line number Diff line number Diff line change 31
31
JRELEASER_GPG_PUBLIC_KEY : ${{ secrets.gpgPublicKey }}
32
32
JRELEASER_GPG_SECRET_KEY : ${{ secrets.gpgSecretKey }}
33
33
run : ./gradlew jreleaserDeploy
34
+ - name : Store JReleaser Logs
35
+ if : failure()
36
+ uses : actions/upload-artifact@v4
37
+ with :
38
+ name : jreleaser
39
+ path : build/jreleaser
40
+ - name : Store Reports
41
+ if : failure()
42
+ uses : actions/upload-artifact@v4
43
+ with :
44
+ name : reports
45
+ path : build/reports
You can’t perform that action at this time.
0 commit comments