chore: Add --no-checksum-validation option to S3 copy command in build-linux workflow

- Updated the S3 copy command in the build-linux.yml workflow to include the --no-checksum-validation option for improved performance during file uploads.
This commit is contained in:
Max 2025-05-18 18:08:03 +08:00
parent e7ac051d88
commit dcf3e7ef76

View file

@ -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
aws s3 cp $file s3://$R2_BUCKET/archives/ --endpoint-url https://$R2_ACCOUNT_ID.r2.cloudflarestorage.com --no-checksum-validation
done