Skip to content

Commit ab08029

Browse files
authored
fix(ci): fix release dbg upload path (#16958)
1 parent b6ff044 commit ab08029

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/actions/publish_binary/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)