From a6da4e5802905fc408ab0b3a92bf15e12d14a1b7 Mon Sep 17 00:00:00 2001 From: Matthias Grob Date: Tue, 16 Nov 2021 18:25:09 +0100 Subject: [PATCH] CI: Fix S3 upload URL (#10023) --- .github/workflows/linux_release.yml | 2 +- .github/workflows/macos_release.yml | 3 +-- .github/workflows/windows_release.yml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux_release.yml b/.github/workflows/linux_release.yml index dd7bd6f..ff85ec7 100644 --- a/.github/workflows/linux_release.yml +++ b/.github/workflows/linux_release.yml @@ -97,4 +97,4 @@ 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/master/${ARTIFACT} --region us-west-2 --acl public-read + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/builds/master/${ARTIFACT} --region us-west-2 --acl public-read diff --git a/.github/workflows/macos_release.yml b/.github/workflows/macos_release.yml index 563d52d..78f80dc 100644 --- a/.github/workflows/macos_release.yml +++ b/.github/workflows/macos_release.yml @@ -92,5 +92,4 @@ 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/master/${ARTIFACT} --region us-west-2 --acl public-read - \ No newline at end of file + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/builds/master/${ARTIFACT} --region us-west-2 --acl public-read diff --git a/.github/workflows/windows_release.yml b/.github/workflows/windows_release.yml index f87c8e0..9a6bf7e 100644 --- a/.github/workflows/windows_release.yml +++ b/.github/workflows/windows_release.yml @@ -98,4 +98,4 @@ 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 ${{ env.ARTIFACT }} s3://qgroundcontrol/master/${{ env.ARTIFACT }} --region us-west-2 --acl public-read + aws s3 cp ${{ env.ARTIFACT }} s3://qgroundcontrol/builds/master/${{ env.ARTIFACT }} --region us-west-2 --acl public-read