Skip to content

Commit 815c759

Browse files
committed
build reports
1 parent c52b59e commit 815c759

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/build_and_release_github.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,23 @@ jobs:
3838
env:
3939
GPG_SIGNING_KEY_PW: ${{ secrets.GPG_PASSPHRASE }}
4040

41-
- name: Build and release package
41+
- name: Build package
4242
run: ./gradlew clean build githubRelease
4343
env:
4444
GPG_SIGNING_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
4545
GPG_SIGNING_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
4646
RELEASE_GRADLE_PLUGIN_TOKEN: ${{ secrets.RELEASE_GRADLE_PLUGIN_TOKEN }}
47+
48+
- name: Release package
49+
run: ./gradlew githubRelease
50+
env:
51+
GPG_SIGNING_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
52+
GPG_SIGNING_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
53+
RELEASE_GRADLE_PLUGIN_TOKEN: ${{ secrets.RELEASE_GRADLE_PLUGIN_TOKEN }}
54+
55+
- name: Upload build reports
56+
uses: actions/upload-artifact@v4
57+
if: always()
58+
with:
59+
name: build-reports
60+
path: '**/build/reports/'

0 commit comments

Comments
 (0)