audio streaming app plyr.fm
38
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove dead R2_BUCKET env vars from costs export workflow (#1167)

the script uses R2_STATS_BUCKET / R2_STATS_PUBLIC_URL (with defaults),
not R2_BUCKET / R2_PUBLIC_BUCKET_URL — these env vars were never read.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>

authored by

nate nowack
Claude Opus 4.6
and committed by
GitHub
d2c2200d f8fa8ff0

-4
-4
.github/workflows/export-costs.yml
··· 11 11 # AWS_ACCESS_KEY_ID - R2 access key 12 12 # AWS_SECRET_ACCESS_KEY - R2 secret key 13 13 # R2_ENDPOINT_URL - R2 endpoint 14 - # R2_BUCKET - R2 bucket name 15 - # R2_PUBLIC_BUCKET_URL - public R2 URL 16 14 17 15 name: export costs 18 16 ··· 56 54 AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} 57 55 AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} 58 56 R2_ENDPOINT_URL: ${{ secrets.R2_ENDPOINT_URL }} 59 - R2_BUCKET: ${{ secrets.R2_BUCKET }} 60 - R2_PUBLIC_BUCKET_URL: ${{ secrets.R2_PUBLIC_BUCKET_URL }}