File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,11 @@ runs:
4646 shell : bash
4747 if : inputs.category == 'default'
4848 run : |
49- aws s3 cp ${{ steps.name.outputs.name }}.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}.tar.gz --no-progress
49+ aws s3 cp ${{ steps.name.outputs.name }}.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}.tar.gz --no-progress --checksum-algorithm=CRC32
5050 if [ -f ${{ steps.name.outputs.name }}-dbg.tar.gz ]; then
51- aws s3 cp ${{ steps.name.outputs.name }}-dbg.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}-dbg.tar.gz --no-progress
51+ aws s3 cp ${{ steps.name.outputs.name }}-dbg.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}-dbg.tar.gz --no-progress --checksum-algorithm=CRC32
5252 fi
5353 gh api /repos/databendlabs/databend/tags > tags.json
54- aws s3 cp ./tags.json s3://repo/databend/tags.json
54+ aws s3 cp ./tags.json s3://repo/databend/tags.json --no-progress --checksum-algorithm=CRC32
5555 gh api /repos/databendlabs/databend/releases > releases.json
56- aws s3 cp ./releases.json s3://repo/databend/releases.json
56+ aws s3 cp ./releases.json s3://repo/databend/releases.json --no-progress --checksum-algorithm=CRC32
Original file line number Diff line number Diff line change 5252 shell : bash
5353 working-directory : scripts/distribution/deb
5454 run : |
55- aws s3 sync --delete --no-progress dists s3://repo/deb/dists
56- aws s3 sync --delete --no-progress pool s3://repo/deb/pool
55+ aws s3 sync dists s3://repo/deb/dists --delete --no-progress --checksum-algorithm=CRC32
56+ aws s3 sync pool s3://repo/deb/pool --delete --no-progress --checksum-algorithm=CRC32
You can’t perform that action at this time.
0 commit comments