From 668e13d7f76c8e6c015d16f7da671aa49f684392 Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Sun, 23 Nov 2025 22:43:17 -0800 Subject: [PATCH] fix: correct S3 upload path in GitHub Actions workflow by removing unnecessary bucket name reference --- .github/workflows/custom_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/custom_build.yml b/.github/workflows/custom_build.yml index 17a0284..1d807f2 100644 --- a/.github/workflows/custom_build.yml +++ b/.github/workflows/custom_build.yml @@ -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"