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 414185b commit cb06a0eCopy full SHA for cb06a0e
.github/workflows/release.yml
@@ -150,11 +150,13 @@ jobs:
150
with:
151
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
152
passphrase: ${{ secrets.GPG_PASSPHRASE }}
153
+ git_user_signingkey: true
154
+ git_tag_gpgsign: true
155
156
- name: Create signed tag for this repository
157
run: |
- # Create and sign the same tag locally for this repository
- git tag -s ${{ steps.tag.outputs.tag_name }} -m "Release ${{ steps.tag.outputs.tag_name }}" --force
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
160
161
- name: Create Release
162
uses: softprops/action-gh-release@v2
0 commit comments