File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 42
42
if : (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags')) &&
43
43
(github.event_name == 'push' || github.event_name == 'create') &&
44
44
github.repository == 'tschuchortdev/hkd4s'
45
+ concurrency :
46
+ group : publishing
47
+ cancel-in-progress : true
45
48
env :
46
49
SONATYPE_NEXUS_USERNAME : ${{ secrets.SONATYPE_NEXUS_USERNAME }}
47
50
SONATYPE_NEXUS_PASSWORD : ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
@@ -86,12 +89,11 @@ jobs:
86
89
echo EOF
87
90
} >> "$GITHUB_ENV"
88
91
- name : Make release on Github
89
- uses : marvinpinto /action-automatic-releases@latest
92
+ uses : softprops /action-gh-release@v2
90
93
if : ${{ env.IS_SNAPSHOT_VERSION == 'false' }}
91
94
with :
92
- repo_token : ${{ secrets.GITHUB_TOKEN }}
93
- automatic_release_tag : v${{ env.VERSION_NAME }}
94
- prerelease : false
95
- title : ${{ env.VERSION_NAME }}
95
+ name : ${{ env.VERSION_NAME }}
96
+ tag_name : v${{ env.VERSION_NAME }}
96
97
files : |
97
98
${{ env.ARTIFACT_PATHS }}
99
+ fail_on_unmatched_files : true
You can’t perform that action at this time.
0 commit comments