From b07df4d06c7fbaca533bc32b8e7a0bc709feda16 Mon Sep 17 00:00:00 2001 From: Gabriel Grubba Date: Fri, 28 Oct 2022 06:28:34 -0300 Subject: [PATCH] fix: triong to make release tarballs --- scripts/make-release-tarballs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/make-release-tarballs.sh b/scripts/make-release-tarballs.sh index 6b52e9c5e7..3b569e863f 100755 --- a/scripts/make-release-tarballs.sh +++ b/scripts/make-release-tarballs.sh @@ -15,13 +15,13 @@ echo "VERSION = $VERSION" git fetch origin && git checkout release/METEOR@$VERSION && git reset --hard origin/$BRANCH_NAME && git clean -df && - ./meteor admin make-bootstrap-tarballs --target-arch os.windows.x86_64 $VERSION win64 && - ./meteor admin make-bootstrap-tarballs --target-arch os.linux.x86_64 $VERSION linux64 && - ./meteor admin make-bootstrap-tarballs --target-arch os.osx.x86_64 $VERSION osx && - ./meteor admin make-bootstrap-tarballs --target-arch os.osx.arm64 $VERSION osx && aws s3 mb s3://com.meteor.static/packages-bootstrap/$VERSION/ && + ./meteor admin make-bootstrap-tarballs --target-arch os.windows.x86_64 $VERSION win64 && aws s3 cp --acl public-read win64/meteor-bootstrap-os.windows.x86_64.tar.gz s3://com.meteor.static/packages-bootstrap/$VERSION/ && + ./meteor admin make-bootstrap-tarballs --target-arch os.linux.x86_64 $VERSION linux64 && aws s3 cp --acl public-read linux64/meteor-bootstrap-os.linux.x86_64.tar.gz s3://com.meteor.static/packages-bootstrap/$VERSION/ && + ./meteor admin make-bootstrap-tarballs --target-arch os.osx.x86_64 $VERSION osx && aws s3 cp --acl public-read osx/meteor-bootstrap-os.osx.x86_64.tar.gz s3://com.meteor.static/packages-bootstrap/$VERSION/ && + ./meteor admin make-bootstrap-tarballs --target-arch os.osx.arm64 $VERSION osx && aws s3 cp --acl public-read osx/meteor-bootstrap-os.osx.arm64.tar.gz s3://com.meteor.static/packages-bootstrap/$VERSION/ && aws s3 ls s3://com.meteor.static/packages-bootstrap/$VERSION