Skip to content

Commit

Permalink
Equalize the length of the tag with the deb file
Browse files Browse the repository at this point in the history
The release tag had a sha length of 8, while the deb file had a sha
length of 7...
  • Loading branch information
shuhaowu committed Apr 30, 2021
1 parent f0e9ad6 commit eea04de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
run: .github/workflows/build-deb.sh

- name: Releasing Ghostferry to Github
run: gh release create --target ${GITHUB_REF#refs/heads/} -p release-${GITHUB_SHA::8} build/ghostferry*
run: gh release create --target ${GITHUB_REF#refs/heads/} -p release-${GITHUB_SHA::7} build/ghostferry*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit eea04de

Please sign in to comment.