From e1780db83bba6b8e995093f12df9f8d250d979f7 Mon Sep 17 00:00:00 2001 From: Max Date: Sun, 18 May 2025 18:21:10 +0800 Subject: [PATCH] chore: Remove --no-checksum-validation option from S3 copy command in build-linux workflow - Updated the S3 copy command in the build-linux.yml workflow to remove the --no-checksum-validation option, reverting to the previous behavior for consistency in file uploads. --- .github/workflows/build-linux.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 6ad7b653..185486b7 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -43,5 +43,5 @@ jobs: - name: Push To R2 Cloudflare run: | for file in /data/*; do - aws s3 cp $file s3://$R2_BUCKET/archives/ --endpoint-url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com --no-checksum-validation + aws s3 cp $file s3://$R2_BUCKET/archives/ --endpoint-url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com done