1
1
mirror of https://github.com/orhun/git-cliff.git synced 2025-01-05 22:33:09 +03:00

fix(release): strip the unreleased title from tag message

This commit is contained in:
orhun 2021-06-19 23:51:44 +03:00
parent 62403be828
commit c7f08fe4a3
No known key found for this signature in database
GPG Key ID: B928720AEC532117

View File

@ -4,8 +4,10 @@ if [ -n "$1" ]; then
cargo run -- --tag "$1" > CHANGELOG.md
git add -A && git commit -m "chore(release): prepare for $1"
changelog=$(cargo run -- --unreleased --strip all)
changelog=${changelog//### /}
changelog=${changelog//## [unreleased\]/}
git -c user.name="git-cliff" \
-c user.email="git-cliff@protonmail.com" \
-c user.signingkey="1D2D410A741137EBC544826F4A92FA17B6619297" \
tag -s -a "$1" -m "Release $1\n\n${changelog//### /}"
tag -s -a "$1" -m "Release $1" -m "$changelog"
fi