Skip to content

Commit

Permalink
fix: gh release create doesn't like tags as targets needs full commit…
Browse files Browse the repository at this point in the history
… sha
  • Loading branch information
mstoykov committed Oct 10, 2023
1 parent 0bb8504 commit b06cf45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ jobs:
for asset in ./dist/*; do
assets+=("$asset")
done
gh release create "$VERSION" "${assets[@]}" --target "$VERSION" -F "./release notes/${VERSION}.md"
gh release create "$VERSION" "${assets[@]}" --target "$GITHUB_SHA" -F "./release notes/${VERSION}.md"
publish-packages:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b06cf45

Please sign in to comment.