Github Action to upload individual files to S3.
- uses: scribd/upload-file-to-s3-action@v2
with:
path: build/outputs/release/built-app.apk
destination: myapp.apk
bucket: my-bucket
access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
The filepath to upload.
The destination filepath. Optional, defaults to path
The bucket to place the file in.
The AWS access key id.
The AWS secret access key.
The AWS region to use. Defaults to us-east-1
.
The ACL permissions to set for the file. Defaults to public-read
.