Skip to content

Commit

Permalink
Fix AWS credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
core1024 committed Apr 13, 2023
1 parent 82e7da8 commit 311af29
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ jobs:
run: |
cargo run --bin bundle-macos
appdmg ./resources/appdmg.json "target/macos/StremioService.dmg"
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_KEY }}
aws-region: eu-west-1

- name: Upload to Amazon S3
run: |
aws s3 cp --acl public-read target/macos/StremioService.dmg s3://stremio-artifacts/stremio-service/${{ github.ref_name }}/
Expand Down

0 comments on commit 311af29

Please sign in to comment.