Skip to content

Commit

Permalink
fix(release): specify the committer email in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 20, 2021
1 parent ad3126e commit 381c941
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ if [ -n "$1" ]; then
{% endfor %}"
changelog=$(cargo run -- --unreleased --strip all)
# create a tag
git -c user.signingkey="1D2D410A741137EBC544826F4A92FA17B6619297" \
git -c user.name="git-cliff" \
-c user.email="[email protected]" \
-c user.signingkey="1D2D410A741137EBC544826F4A92FA17B6619297" \
tag -s -a "$1" -m "Release $1" -m "$changelog"
else
echo "warn: please provide a tag"
Expand Down

0 comments on commit 381c941

Please sign in to comment.