Skip to content

Commit 0d8a273

Browse files
committed
[GHA] Try to fix the build
1 parent 85d5ae6 commit 0d8a273

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/scripts/sign-exe.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ timeout=$5
77

88
in_filename="$(basename -- $in_file)"
99
echo "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
1111
for (( 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

.github/workflows/gh-hosted-eclipse-distro-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: |

0 commit comments

Comments
 (0)