Skip to content

Commit

Permalink
aws login fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Jan 17, 2025
1 parent 8f90f6e commit d2f32a2
Showing 1 changed file with 10 additions and 16 deletions.
26 changes: 10 additions & 16 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,11 @@ jobs:
run: ./.github/scripts/package-macOS.sh plugdata-macOS-Legacy.pkg

- name: Upload to Cloud Storage
uses: Noelware/[email protected] # this can be `master` or a tagged release
with:
files: ./plugdata-macOS-Legacy.*
access-key-id: ${{ secrets.WASABI_ACCESS_KEY }}
secret-key: ${{ secrets.WASABI_SECRET_KEY }}
endpoint: https://s3.wasabisys.com
region: eu-central-1
bucket: plugdata-nightly
run:
aws configure set aws_access_key_id ${{ secrets.WASABI_ACCESS_KEY }}
aws configure set aws_secret_access_key ${{ secrets.WASABI_SECRET_KEY }}
aws configure set default.region eu-central-1
aws s3 cp ./plugdata-${{ matrix.name }}.* s3://plugdata-nightly/ --endpoint-url=https://s3.eu-central-1.wasabisys.com --checksum-algorithm SHA256

- name: Archive Artifacts
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -347,14 +344,11 @@ jobs:
run: ./.github/scripts/package-Linux.sh plugdata-${{ matrix.name }}.tar.gz

- name: Upload to Cloud Storage
uses: Noelware/[email protected] # this can be `master` or a tagged release
with:
files: ./plugdata-${{ matrix.name }}.*
access-key-id: ${{ secrets.WASABI_ACCESS_KEY }}
secret-key: ${{ secrets.WASABI_SECRET_KEY }}
endpoint: https://s3.wasabisys.com
region: eu-central-1
bucket: plugdata-nightly
run:
aws configure set aws_access_key_id ${{ secrets.WASABI_ACCESS_KEY }}
aws configure set aws_secret_access_key ${{ secrets.WASABI_SECRET_KEY }}
aws configure set default.region eu-central-1
aws s3 cp ./plugdata-${{ matrix.name }}.* s3://plugdata-nightly/ --endpoint-url=https://s3.eu-central-1.wasabisys.com --checksum-algorithm SHA256

- name: Archive Artifacts
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit d2f32a2

Please sign in to comment.