From 5d7f1a9ee78ae145179ee0c0596522b39910afe6 Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Tue, 14 Dec 2021 15:41:58 -0800 Subject: [PATCH] Fix S3 upload --- .github/workflows/windows_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows_release.yml b/.github/workflows/windows_release.yml index 050e8ec..ff683ac 100644 --- a/.github/workflows/windows_release.yml +++ b/.github/workflows/windows_release.yml @@ -106,7 +106,7 @@ jobs: run: | aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }} aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws s3 cp ${ARTIFACT} s3://qgroundcontrol/builds/${GIT_BRANCH_NAME}/${{ env.ARTIFACT }} --region us-west-2 --acl public-read + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/builds/${{ env.GIT_BRANCH_NAME }}/${{ env.ARTIFACT }} --region us-west-2 --acl public-read - name: Upload tagged stable build to S3 latest Bucket if: github.event_name == 'push' && github.ref_type == 'tag'