Skip to content

Commit 34bf947

Browse files
committed
gha: Fix up tarball sign command and sign binary tags
1 parent ca1d59a commit 34bf947

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
git add -f .
8888
git commit -m "Binary release $TAG_NAME" -S
8989
git push origin $BRANCH_NAME-binary
90-
git tag $TAG_NAME-binary
90+
git tag $TAG_NAME-binary -s -m $TAG_NAME-binary
9191
git push origin $BRANCH_NAME-binary --tags
9292
9393
- name: Cleanup source tree
@@ -99,9 +99,9 @@ jobs:
9999
- name: Sign release tarball
100100
run: |
101101
set -e
102-
for f in limine-*.tar.*; do
103-
gpg --batch --default-key 05D29860D0A0668AAEFB9D691F3C021BECA23821 --detach-sign $f
104-
done
102+
for f in limine-*.tar.*; do \
103+
gpg --batch --default-key 05D29860D0A0668AAEFB9D691F3C021BECA23821 --detach-sign $f; \
104+
done \
105105
106106
- name: Create release notes
107107
run: |

0 commit comments

Comments
 (0)