Skip to content

Commit

Permalink
ci(release-plz): prefix versions with "v"
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Mar 17, 2024
1 parent 9ac8a0e commit 964503c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .mise/tasks/release-plz
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ if ! echo "$released_versions" | grep -q "^$cur_version$"; then
cargo publish -p usage-lib
cargo publish -p usage-cli
changelog="$(git cliff --tag "v$cur_version" --strip all --unreleased)"
git tag "$cur_version"
git tag "v$cur_version"
git push --tags
gh release create "$cur_version" --title "$cur_version" --notes "$changelog"
gh release create "v$cur_version" --title "v$cur_version" --notes "$changelog"
exit 0
fi

Expand Down

0 comments on commit 964503c

Please sign in to comment.