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 08dd9c5 commit 59918f7Copy full SHA for 59918f7
.github/workflows/release.yml
@@ -38,6 +38,14 @@ jobs:
38
if: github.event_name != 'pull_request'
39
env:
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
+ - name: 'Upload Release Artifacts'
42
+ if: github.event_name == 'release'
43
+ run: |
44
+ cd ${{ github.workspace }}/target
45
+ gh release upload ${{ github.event.release.tag_name }} *.jar*
46
+ env:
47
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+ continue-on-error: true
49
- name: Publish package to Maven Central Repository
50
if: github.event_name == 'release'
51
run: mvn -P release --batch-mode deploy
0 commit comments