We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62019c4 commit 98cc4b0Copy full SHA for 98cc4b0
2 files changed
.github/workflows/git-release.yml
.github/workflows/preview-and-release.yml
@@ -17,6 +17,9 @@ env:
17
PREVIEW_TASK: publishSnapshotPublicationToSonatypeSnapshotRepository
18
PUBLISH_TASK: publishMavenCentralReleasePublicationToSonatypeRepository
19
20
+permissions:
21
+ contents: write
22
+
23
jobs:
24
maven_Preview:
25
if: ${{ github.ref == 'refs/heads/main' }}
@@ -96,3 +99,10 @@ jobs:
96
99
gradle.properties
97
100
**/gradle/**
98
101
Scripts/**
102
+ - name: GitHub Release
103
+ uses: softprops/action-gh-release@v2
104
+ with:
105
+ token: ${{ secrets.GITHUB_TOKEN }}
106
+ fail_on_unmatched_files: true
107
+ files: |
108
+ build/**/*.jar
0 commit comments