File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -151,12 +151,11 @@ jobs:
151
151
gpg_private_key : ${{ secrets.GPG_PRIVATE_KEY }}
152
152
passphrase : ${{ secrets.GPG_PASSPHRASE }}
153
153
git_user_signingkey : true
154
- git_tag_gpgsign : true
155
154
156
155
- name : Create signed tag for this repository
157
156
run : |
158
- # Create tag (will be automatically signed due to git_tag_gpgsign: true)
159
- git tag ${{ steps.tag.outputs.tag_name }} -m "Release ${{ steps.tag.outputs.tag_name }}" --force
157
+ # Create and explicitly sign the tag with -s flag
158
+ git tag -s ${{ steps.tag.outputs.tag_name }} -m "Release ${{ steps.tag.outputs.tag_name }}" --force
160
159
161
160
# Push the signed tag to the repository
162
161
git push origin ${{ steps.tag.outputs.tag_name }} --force
You can’t perform that action at this time.
0 commit comments