File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
.github/actions/publish_binary Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,16 +38,16 @@ runs:
3838 # Reference: https://cli.github.com/manual/gh_release_upload
3939 run : |
4040 gh release upload ${{ inputs.version }} ${{ steps.name.outputs.name }}.tar.gz --clobber
41- if [ -f ${{ steps.name.outputs.name }}-gdb .tar.gz ]; then
42- gh release upload ${{ inputs.version }} ${{ steps.name.outputs.name }}-dbg.* --clobber
41+ if [ -f ${{ steps.name.outputs.name }}-dbg .tar.gz ]; then
42+ gh release upload ${{ inputs.version }} ${{ steps.name.outputs.name }}-dbg.tar.gz --clobber
4343 fi
4444
4545 - name : Sync normal release to R2
4646 shell : bash
4747 if : inputs.category == 'default'
4848 run : |
4949 aws s3 cp ${{ steps.name.outputs.name }}.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}.tar.gz --no-progress
50- if [ -f ${{ steps.name.outputs.name }}-gdb .tar.gz ]; then
50+ if [ -f ${{ steps.name.outputs.name }}-dbg .tar.gz ]; then
5151 aws s3 cp ${{ steps.name.outputs.name }}-dbg.tar.gz s3://repo/databend/${{ inputs.version }}/${{ steps.name.outputs.name }}-dbg.tar.gz --no-progress
5252 fi
5353 gh api /repos/databendlabs/databend/tags > tags.json
You can’t perform that action at this time.
0 commit comments