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 283af60 commit 877ff08Copy full SHA for 877ff08
hack/upload-multiarch-release-assets.sh
@@ -31,9 +31,9 @@ echo "*** Reverse verify signature"
31
gpg -a --verify release-${TARGET_VERSION}.sha256.asc
32
33
echo "*** Uploading release assets"
34
-for asset in ${BINARIES} ${TARGET_VERSION}.sha256 ${TARGET_VERSION}.sha256.asc; do
+for asset in ${BINARIES} release-${TARGET_VERSION}.sha256 release-${TARGET_VERSION}.sha256.asc; do
35
echo " -> $asset"
36
- echo gh release upload ${TARGET_VERSION} ${asset}
+ gh release upload ${TARGET_VERSION} ${asset}
37
done
38
39
-echo "Done."
+echo "Done."
0 commit comments