File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,15 @@ runs:
5252 echo "Installing stackql-deploy binary..."
5353 OS="$(uname -s)"
5454 ARCH="$(uname -m)"
55+ BASE_URL="https://github.com/stackql/stackql-deploy-rs/releases/latest/download"
5556 echo "Detected platform: ${OS}-${ARCH}"
5657 case "${OS}-${ARCH}" in
57- Linux-x86_64) URL="https://bit.ly/ stackql-deploy-amd64 " ;;
58- Linux-aarch64) URL="https://bit.ly/ stackql-deploy-arm64" ;;
59- Darwin-arm64) URL="https://bit.ly/ stackql-deploy-macos-arm64" ;;
60- Darwin-x86_64) URL="https://bit.ly/ stackql-deploy-macos-amd64 " ;;
58+ Linux-x86_64) URL="${BASE_URL}/ stackql-deploy-linux-x86_64.tar.gz " ;;
59+ Linux-aarch64) URL="${BASE_URL}/ stackql-deploy-linux- arm64.tar.gz " ;;
60+ Darwin-arm64) URL="${BASE_URL}/ stackql-deploy-macos-arm64.tar.gz " ;;
61+ Darwin-x86_64) URL="${BASE_URL}/ stackql-deploy-macos-x86_64.tar.gz " ;;
6162 MINGW*|MSYS*|CYGWIN*)
62- URL="https://bit.ly/ stackql-deploy-windows" ;;
63+ URL="${BASE_URL}/ stackql-deploy-windows-x86_64.zip " ;;
6364 *)
6465 echo "Unsupported platform: ${OS}-${ARCH}"
6566 exit 1
You can’t perform that action at this time.
0 commit comments