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:
46
46
shell : bash
47
47
if : inputs.category == 'default'
48
48
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
50
50
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
52
52
fi
53
53
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
55
55
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 52
52
shell : bash
53
53
working-directory : scripts/distribution/deb
54
54
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