Skip to content

Commit bdb7119

Browse files
committed
chore: fix release-plz with workspace
1 parent 4872ae6 commit bdb7119

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

xtasks/release-plz

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ if [[ $cur_version != "$latest_version" ]]; then
1010
echo "Releasing $cur_version"
1111
changelog="$(git cliff --tag "v$cur_version" --strip all --unreleased)"
1212
changelog="$(echo "$changelog" | tail -n +3)"
13-
git tag "v$cur_version" -s -m "$changelog"
14-
cargo release -x --no-confirm --no-tag --no-push
13+
cargo release -x --no-confirm --workspace
1514
git push --tags
1615
gh release create "v$cur_version" --title "v$cur_version" --notes "$changelog" --draft
1716
exit 0

0 commit comments

Comments
 (0)