Skip to content

Commit

Permalink
chore(ci): fix publish binary gh api (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc authored Dec 26, 2023
1 parent 819b521 commit 2681d1b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/publish_binary/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ runs:
shell: bash
run: |
aws s3 cp dist/${{ steps.package.outputs.file }} s3://repo/bendsql/${{ inputs.version }}/${{ steps.package.outputs.file }} --no-progress
gh api /repos/datafuselabs/bendsql/tags > tags.json
aws s3 cp ./tags.json s3://repo/bendsql/tags.json
gh api /repos/datafuselabs/bendsql/releases > releases.json
gh api '/repos/datafuselabs/bendsql/tags' > tags.json
aws s3 cp tags.json s3://repo/bendsql/tags.json
gh api '/repos/datafuselabs/bendsql/releases' > releases.json
cat releases.json
aws s3 cp ./releases.json s3://repo/bendsql/releases.json
aws s3 cp releases.json s3://repo/bendsql/releases.json

0 comments on commit 2681d1b

Please sign in to comment.