fix: correct S3 upload path in GitHub Actions workflow by removing unnecessary bucket name reference

This commit is contained in:
Ben Allfree
2025-11-23 22:43:17 -08:00
parent 09d744676d
commit 668e13d7f7

View File

@@ -177,7 +177,7 @@ jobs:
update_status uploading
# Upload to R2 with hash as filename
aws s3 cp "$BUILD_FILE" "s3://${{ secrets.R2_BUCKET_NAME }}/${{ inputs.build_hash }}.uf2" \
aws s3 cp "$BUILD_FILE" "s3://${{ inputs.build_hash }}.uf2" \
--endpoint-url "$AWS_ENDPOINT_URL"
echo "✅ Uploaded to R2: ${{ inputs.build_hash }}.uf2"