File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 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/'
You can’t perform that action at this time.
0 commit comments