diff --git a/.github/workflows/linux_release.yml b/.github/workflows/linux_release.yml index c84c631..dd7bd6f 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 --region us-west-2 --acl public-read + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/master/${ARTIFACT} --region us-west-2 --acl public-read diff --git a/.github/workflows/macos_release.yml b/.github/workflows/macos_release.yml index 60994e0..563d52d 100644 --- a/.github/workflows/macos_release.yml +++ b/.github/workflows/macos_release.yml @@ -92,5 +92,5 @@ 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 --region us-west-2 --acl public-read -q \ No newline at end of file + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/master/${ARTIFACT} --region us-west-2 --acl public-read + \ No newline at end of file diff --git a/.github/workflows/windows_release.yml b/.github/workflows/windows_release.yml index 341fc1b..795bbd0 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 ${ARTIFACT} s3://qgroundcontrol/master --region us-west-2 --acl public-read + aws s3 cp ${ARTIFACT} s3://qgroundcontrol/master/${ARTIFACT} --region us-west-2 --acl public-read