File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ timeout=$5
77
88in_filename=" $( basename -- $in_file ) "
99echo " Copying ${in_file} to s3 s3://${AWS_S3_BUCKET} /exes-to-sign/${id} .exe for signing"
10- aws s3 cp $in_file s3://$AWS_S3_BUCKET /exes-to-sign/$id .exe --no-progress
10+ aws s3 cp $in_file s3://$AWS_S3_BUCKET /exes-to-sign/$id .exe --no-progress --checksum-algorithm CRC32
1111for (( i= wait_time; i< timeout; i+= wait_time )) ; {
1212 sleep $wait_time
1313 aws s3api head-object --bucket $CDN_BUCKET --key spring-tools/exes-signed/$id .exe > /dev/null 2>&1 || not_exist=true
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ jobs:
281281 echo "Removing old dmg files from S3..."
282282 aws s3 rm s3://$AWS_S3_BUCKET/${dist_path} --recursive --exclude "*" --include "spring-tool-suite-4*macosx*.dmg*" --exclude "*/*"
283283 echo "Uploading new dmg files to S3..."
284- aws s3 mv . s3://$AWS_S3_BUCKET/${dist_path} --recursive --exclude "*" --include "spring-tool-suite-4*macosx*.dmg*" --exclude "*/*" --no-progress
284+ aws s3 mv . s3://$AWS_S3_BUCKET/${dist_path} --recursive --exclude "*" --include "spring-tool-suite-4*macosx*.dmg*" --exclude "*/*" --no-progress --checksum-algorithm CRC32
285285 - name : Update Nightly Distro Downloads page
286286 if : ${{ inputs.build_type == 'snapshot' && always() }}
287287 run : |
You can’t perform that action at this time.
0 commit comments