summaryrefslogtreecommitdiff
path: root/hack
diff options
context:
space:
mode:
authorjannfis <jann@mistrust.net>2022-03-14 18:54:47 +0100
committerGitHub <noreply@github.com>2022-03-14 18:54:47 +0100
commit877ff089719cafb18cd2e20c0316052dc7ff341a (patch)
treef2674e0bd1fe5d60c646c455d86dff8036f88c15 /hack
parent283af602a7b99eacad9376817fe8a876379e54c1 (diff)
chore: Correctly upload release assets (#403)
Signed-off-by: jannfis <jann@mistrust.net>
Diffstat (limited to 'hack')
-rwxr-xr-xhack/upload-multiarch-release-assets.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/hack/upload-multiarch-release-assets.sh b/hack/upload-multiarch-release-assets.sh
index 935543f..b3f8312 100755
--- a/hack/upload-multiarch-release-assets.sh
+++ b/hack/upload-multiarch-release-assets.sh
@@ -31,9 +31,9 @@ echo "*** Reverse verify signature"
gpg -a --verify release-${TARGET_VERSION}.sha256.asc
echo "*** Uploading release assets"
-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
echo " -> $asset"
- echo gh release upload ${TARGET_VERSION} ${asset}
+ gh release upload ${TARGET_VERSION} ${asset}
done
-echo "Done." \ No newline at end of file
+echo "Done."