mirror of
https://github.com/orhun/git-cliff.git
synced 2024-11-25 13:22:17 +03:00
chore(release): improve the release script with additional messages
This commit is contained in:
parent
0350bfdee2
commit
09ab59f12e
53
release.sh
53
release.sh
@ -1,32 +1,39 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# takes the tag as an argument (e.g. v0.1.0)
|
||||
if [ -n "$1" ]; then
|
||||
# update the version
|
||||
msg="# managed by release.sh"
|
||||
sed "s/^version = .* $msg$/version = \"${1#v}\" $msg/" -i git-cliff*/Cargo.toml
|
||||
# update the changelog
|
||||
sed "s/\s+\#\s(.*)\s\#\sreplace issue numbers/\\t\1/g" -E -i config/cliff.toml
|
||||
cargo run -- --tag "$1" > CHANGELOG.md
|
||||
git restore config/cliff.toml
|
||||
git add -A && git commit -m "chore(release): prepare for $1"
|
||||
git show
|
||||
# generate a changelog for the tag message
|
||||
export GIT_CLIFF_TEMPLATE="\
|
||||
#
|
||||
|
||||
if [ -z "$1" ]; then
|
||||
echo "Please provide a tag."
|
||||
echo "Usage: ./release.sh v[X.Y.Z]"
|
||||
exit
|
||||
fi
|
||||
|
||||
echo "Preparing $1..."
|
||||
# update the version
|
||||
msg="# managed by release.sh"
|
||||
sed "s/^version = .* $msg$/version = \"${1#v}\" $msg/" -i git-cliff*/Cargo.toml
|
||||
# update the changelog
|
||||
sed "s/\s+\#\s(.*)\s\#\sreplace issue numbers/\\t\1/g" -E -i config/cliff.toml
|
||||
cargo run -- --tag "$1" >CHANGELOG.md
|
||||
git restore config/cliff.toml
|
||||
git add -A && git commit -m "chore(release): prepare for $1"
|
||||
git show
|
||||
# generate a changelog for the tag message
|
||||
export GIT_CLIFF_TEMPLATE="\
|
||||
{% for group, commits in commits | group_by(attribute=\"group\") %}
|
||||
{{ group | upper_first }}\
|
||||
{% for commit in commits %}
|
||||
- {% if commit.breaking %}(breaking) {% endif %}{{ commit.message | upper_first }} ({{ commit.id | truncate(length=7, end=\"\") }})\
|
||||
{% endfor %}
|
||||
{% endfor %}"
|
||||
changelog=$(cargo run -- --config examples/detailed.toml --unreleased --strip all)
|
||||
# create a signed tag
|
||||
# https://keyserver.ubuntu.com/pks/lookup?search=0x4A92FA17B6619297&op=vindex
|
||||
git -c user.name="git-cliff" \
|
||||
-c user.email="git-cliff@protonmail.com" \
|
||||
-c user.signingkey="1D2D410A741137EBC544826F4A92FA17B6619297" \
|
||||
tag -s -a "$1" -m "Release $1" -m "$changelog"
|
||||
git tag -v "$1"
|
||||
else
|
||||
echo "warn: please provide a tag"
|
||||
fi
|
||||
changelog=$(cargo run -- --config examples/detailed.toml --unreleased --strip all)
|
||||
# create a signed tag
|
||||
# https://keyserver.ubuntu.com/pks/lookup?search=0x4A92FA17B6619297&op=vindex
|
||||
git -c user.name="git-cliff" \
|
||||
-c user.email="git-cliff@protonmail.com" \
|
||||
-c user.signingkey="1D2D410A741137EBC544826F4A92FA17B6619297" \
|
||||
tag -s -a "$1" -m "Release $1" -m "$changelog"
|
||||
git tag -v "$1"
|
||||
echo "Done!"
|
||||
echo "Now push the commit (git push) and the tag (git push --tags)."
|
||||
|
Loading…
Reference in New Issue
Block a user