From e84003d7152882eccf4c1e6170177b2f5e3a93c0 Mon Sep 17 00:00:00 2001 From: Salah Al Saleh Date: Thu, 23 Jan 2025 13:20:07 -0800 Subject: [PATCH] Keep 'v' when pushing manager binary to s3 (#1732) --- scripts/ci-upload-binaries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci-upload-binaries.sh b/scripts/ci-upload-binaries.sh index 5fcb90984..ffe2ce6b6 100755 --- a/scripts/ci-upload-binaries.sh +++ b/scripts/ci-upload-binaries.sh @@ -79,7 +79,7 @@ function managerbin() { fail "file build/manager-linux-$ARCH.tgz not found" fi - manager_version="${EC_VERSION#v}" # remove the 'v' prefix + manager_version="${EC_VERSION}" # upload the binary to the bucket retry 3 aws s3 cp --no-progress "build/manager-linux-$ARCH.tgz" "s3://${S3_BUCKET}/manager-binaries/${manager_version}-${ARCH}.tar.gz"