We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6585dd commit e089fb2Copy full SHA for e089fb2
.github/workflows/build-binary-package.yml
@@ -39,5 +39,5 @@ jobs:
39
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
40
run: |
41
tag_name="${GITHUB_REF##*/}"
42
- # this will find the $PROGRAM_NAME-vendor.tar.xz file as well
43
- hub release edit $(find . -name "$PROGRAM_NAME*" -maxdepth 1 -printf "-a %p ") -a vendor.tgz -m "" "$tag_name"
+ # this will upload the $PROGRAM_NAME-vendor.tar.xz file as well
+ gh release upload "$tag_name" $PROGRAM_NAME* vendor.tgz
0 commit comments