1
1
mirror of https://github.com/orhun/git-cliff.git synced 2024-12-16 00:33:06 +03:00
git-cliff/release.sh

12 lines
398 B
Bash
Raw Normal View History

2021-06-16 22:43:45 +03:00
#!/usr/bin/env bash
if [ -n "$1" ]; then
cargo run -- --tag "$1" > CHANGELOG.md
2021-06-16 22:43:45 +03:00
git add -A && git commit -m "chore(release): prepare for $1"
changelog=$(cargo run -- --unreleased --strip all)
2021-06-16 22:43:45 +03:00
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//### /}"
2021-06-16 22:43:45 +03:00
fi