Skip to content

Commit

Permalink
chore: fix release-plz
Browse files Browse the repository at this point in the history
jdx committed Jan 6, 2025
1 parent 191ca32 commit 52ac62a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtasks/release-plz
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ git config user.name mise-en-dev
git config user.email release@mise.jdx.dev

cur_version="$(cargo pkgid mise | cut -d# -f2)"
if ! cargo info mise | grep 'version:' | head -n1 | awk '{print $2}' | grep -q "^$cur_version$"; then
if ! cargo info mise | grep 'version:' | head -n1 | awk '{print $2}' | grep -q "$cur_version"; then
echo "Releasing $cur_version"
cargo publish
changelog="$(git cliff --tag "v$cur_version" --strip all --unreleased)"

0 comments on commit 52ac62a

Please sign in to comment.