Commit a7914ca 1 parent f83e845 commit a7914ca Copy full SHA for a7914ca
File tree 1 file changed +7
-3
lines changed
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 79
79
run : |
80
80
git cherry-pick ${{ env.RELEASE_NOTES_COMMIT }}
81
81
82
+ - name : Delete existing release tag
83
+ run : |
84
+ git push origin :${{ env.RELEASE_TAG }} || true
85
+ git tag -d ${{ env.RELEASE_TAG }} || true
86
+
82
87
- name : Create new release tag
83
88
run : |
84
- echo "Please delete tag ${{ env.RELEASE_TAG }} manually if it exists"
85
89
git tag -a ${{ env.RELEASE_TAG }} -m "release ${{ env.RELEASE_TAG }}"
86
90
git push origin ${{ env.RELEASE_BRANCH }} --tags
87
91
@@ -178,7 +182,7 @@ jobs:
178
182
env :
179
183
GPG_TTY : $(tty)
180
184
GPG_KEY_FILE : /tmp/gpg-key.txt
181
-
185
+
182
186
- name : Release Maven Artifacts
183
187
if : ${{ github.event.inputs.publish_maven == 'true' }}
184
188
run : |
@@ -267,7 +271,7 @@ jobs:
267
271
publish-native-image :
268
272
if : ${{ github.event.inputs.publish_native_docker == 'true' }}
269
273
runs-on : ubuntu-latest
270
- permissions :
274
+ permissions :
271
275
contents : read
272
276
packages : write
273
277
attestations : write
You can’t perform that action at this time.
0 commit comments