From 9def7e2cd37b6b9f64fd85b9d2bd1ed4b24a9cc9 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Tue, 18 Aug 2026 21:07:35 +0000 Subject: [PATCH] chore(build): drop AWS S3 upload from release workflow (#178) Remove the AWS S3 upload steps from the release workflow, keeping Cloudflare R2 as the only object storage target. - Drop the `aws credential configure` step and the AWS-specific secrets usage. - Drop the `copy files to S3 and clear cache` step. - The awscli install is kept because the Cloudflare R2 sync still relies on it. Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/178 Reviewed-by: DaanSelen <135789+daanselen@noreply.gitea.com> --- .gitea/workflows/release-version.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitea/workflows/release-version.yml b/.gitea/workflows/release-version.yml index ce765d9..a29d92d 100644 --- a/.gitea/workflows/release-version.yml +++ b/.gitea/workflows/release-version.yml @@ -70,19 +70,6 @@ jobs: env: TAR_OPTIONS: "--wildcards" - - name: aws credential configure - uses: https://github.com/aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6 # Gitea - #uses: aws-actions/configure-aws-credentials@v6 # Github / Act - with: - aws-access-key-id: ${{ secrets.AWS_KEY_ID }} - aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - aws-region: ${{ secrets.AWS_REGION }} - - - name: copy files to S3 and clear cache - if: startsWith(github.ref, 'refs/tags/') - run: | - aws s3 sync actions/ s3://${{ secrets.AWS_S3_BUCKET}}/charts/ - - name: Copy files to Cloudflare R2 env: AWS_ACCESS_KEY_ID: ${{ secrets.CLOUDFLARE_R2_ACCESS_KEY_ID }}