Revert "[temp] download hardcoded tag"

This reverts commit b2c5780397.
This commit is contained in:
crystal 2024-01-09 17:16:45 -07:00
parent 706a70b563
commit 4cd33cdfa4
No known key found for this signature in database
GPG key ID: 1122054731F7CC43

View file

@ -44,8 +44,7 @@ case "$1" in
;;
"download-binary")
if [ $CI_COMMIT_TAG ] ; then
echo "WARNING: Using hardcoded tag: v1.20.6-1"
CI_RELEASE_ASSETS=$(curl $CI_VERIFY_API/api/v1/repos/$CI_VERIFY_REPO/releases/tags/v1.20.6-1 | jq -c '.assets[]' | grep linux-amd64)
CI_RELEASE_ASSETS=$(curl $CI_VERIFY_API/api/v1/repos/$CI_VERIFY_REPO/releases/tags/$CI_COMMIT_TAG | jq -c '.assets[]' | grep linux-amd64)
CI_RELEASE_BINARY_URL=$(echo "$CI_RELEASE_ASSETS" | grep linux-amd64\" | jq -r --jsonargs .browser_download_url)
CI_RELEASE_SHA256=$(curl $(echo "$CI_RELEASE_ASSETS" | grep linux-amd64.sha256\" | jq -r --jsonargs .browser_download_url) | cut -d ' ' -f1)
wget -nv --content-disposition $CI_RELEASE_BINARY_URL