Browse Source

Fix S3 upload

QGC4.4
Don Gagne 3 years ago committed by Don Gagne
parent
commit
5d7f1a9ee7
  1. 2
      .github/workflows/windows_release.yml

2
.github/workflows/windows_release.yml

@ -106,7 +106,7 @@ jobs: @@ -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'

Loading…
Cancel
Save