Skip to content

Commit 9486cd7

Browse files
committed
ci updates
1 parent 4f5cb9f commit 9486cd7

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

action.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)