Skip to content

Commit

Permalink
Replace hub in ci workflows (#353)
Browse files Browse the repository at this point in the history
Signed-off-by: Pablo Chacin <[email protected]>
  • Loading branch information
pablochacin authored Oct 17, 2023
1 parent bde2dcb commit 8ed4b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
MESSAGE="$(cat ./releases/${VERSION}.md)"
assets=()
for asset in ./dist/*; do
assets+=("-a" "$asset")
assets+=("$asset")
done
hub release create "${assets[@]}" -m "$VERSION" -m "$MESSAGE" "$VERSION"
gh release create "$VERSION" --target "$VERSION" -F "./releases/${VERSION}.md" "${assets[@]}"

0 comments on commit 8ed4b29

Please sign in to comment.