Skip to content

Commit 877ff08

Browse files
authored
chore: Correctly upload release assets (#403)
Signed-off-by: jannfis <jann@mistrust.net>
1 parent 283af60 commit 877ff08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hack/upload-multiarch-release-assets.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ echo "*** Reverse verify signature"
3131
gpg -a --verify release-${TARGET_VERSION}.sha256.asc
3232

3333
echo "*** Uploading release assets"
34-
for asset in ${BINARIES} ${TARGET_VERSION}.sha256 ${TARGET_VERSION}.sha256.asc; do
34+
for asset in ${BINARIES} release-${TARGET_VERSION}.sha256 release-${TARGET_VERSION}.sha256.asc; do
3535
echo " -> $asset"
36-
echo gh release upload ${TARGET_VERSION} ${asset}
36+
gh release upload ${TARGET_VERSION} ${asset}
3737
done
3838

39-
echo "Done."
39+
echo "Done."

0 commit comments

Comments
 (0)