You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
R2 Upload
0.0.1
This action uploads a file to Cloudflare R2 (or any other S3 provider)
Required The S3 endpoint URL.
Required The S3 access key ID.
Required The S3 access key.
DEAR GOD
Required The S3 bucket you want to upload to.
Required Which file you want to upload
Optional Where you want the file to end up. Defaults to '/(filename)'.
uses: randomairborne/r2-release@main
with:
endpoint: ${{ secrets.S3_ENDPOINT }}
accesskeyid: ${{ secrets.S3_ACCESS_KEY_ID }}
secretaccesskey: ${{ secrets.S3_SECRET_ACCESS_KEY }}
bucket: 'my-s3-bucket'
file: './target/release/my-app.exe'
destination: '/download/my-app.exe'