Skip to content

Commit

Permalink
Switch to gh from hub in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Oct 9, 2023
1 parent 6aa49bc commit c742a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,9 +358,9 @@ jobs:
set -x
assets=()
for asset in ./dist/*; do
assets+=("-a" "$asset")
assets+=("$asset")
done
hub release create "${assets[@]}" -m "$VERSION" -m "$(cat ./release\ notes/${VERSION}.md)" "$VERSION"
gh release create "$VERSION" "${assets[@]}" --target "$VERSION" -F "./release\ notes/${VERSION}.md"
publish-packages:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c742a54

Please sign in to comment.