From 7cb3557e925c5ef6b122d2941a9a459fad00576c Mon Sep 17 00:00:00 2001 From: Katy Bowman Date: Thu, 25 Jan 2024 14:15:57 -0500 Subject: [PATCH] fix: fix s3 path in get-signed-from-stampy --- .github/workflows/get-signed-from-stampy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/get-signed-from-stampy.yml b/.github/workflows/get-signed-from-stampy.yml index f83e33af12..961a38b05e 100644 --- a/.github/workflows/get-signed-from-stampy.yml +++ b/.github/workflows/get-signed-from-stampy.yml @@ -21,7 +21,7 @@ jobs: export AWS_ACCESS_KEY_ID=$(echo "${TEMP_ROLE}" | jq -r '.Credentials.AccessKeyId') export AWS_SECRET_ACCESS_KEY=$(echo "${TEMP_ROLE}" | jq -r '.Credentials.SecretAccessKey') export AWS_SESSION_TOKEN=$(echo "${TEMP_ROLE}" | jq -r '.Credentials.SessionToken') - aws s3 cp --recursive ${{ secrets.STAMPY_SIGNED_BUCKET }}/ . + aws s3 cp --recursive s3://${{ secrets.STAMPY_SIGNED_BUCKET }}/ . - name: upload signed Windows installer to Heroku CLI s3 env: AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}