From c4e5eddbc30976108500b8c5240aeee0ea545bc5 Mon Sep 17 00:00:00 2001 From: Jamie Banks Date: Thu, 4 Jun 2026 17:56:18 +0000 Subject: [PATCH] chore: update R2 endpoint to use variable in build workflow --- .gitea/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 71ef237..15ab881 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -35,6 +35,7 @@ jobs: AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} AWS_DEFAULT_REGION: auto + R2_ENDPOINT_URL: ${{ secrets.R2_ENDPOINT_URL }} run: | aws s3 cp "${{ matrix.artifact }}" "s3://apps/${{ matrix.artifact }}" \ - --endpoint-url https://7d5f26fc811bce9e5fce50d5cd9914c6.r2.cloudflarestorage.com \ No newline at end of file + --endpoint-url $R2_ENDPOINT_URL \ No newline at end of file