Skip to content

Commit e74c80b

Browse files
committed
sign release
1 parent 706a87f commit e74c80b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/release

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rm ./CHANGELOG_FUTURE.md
1818

1919
CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD`
2020

21-
git add CHANGELOG.md && git commit -m "Release $1" -S && git push origin "$CURRENT_BRANCH"
21+
git add CHANGELOG.md && git commit -s -m "Release $1" -S && git push origin "$CURRENT_BRANCH"
2222

2323
./bin/subtree-split
2424

@@ -43,7 +43,7 @@ do
4343
if [[ -z "$LAST_RELEASE" ]]; then
4444
echo "There has not been any releases. Releasing $1";
4545

46-
git tag $1 -s -m "Release $1"
46+
git tag $1 -a -s -m "Release $1"
4747
git push origin --tags
4848
else
4949
echo "Last release $LAST_RELEASE";
@@ -53,7 +53,7 @@ do
5353
if [[ ! -z "$CHANGES_SINCE_LAST_RELEASE" ]]; then
5454
echo "There are changes since last release. Releasing $1";
5555

56-
git tag $1 -s -m "Release $1"
56+
git tag $1 -s -m "Release $1"
5757
git push origin --tags
5858
else
5959
echo "No change since last release.";

0 commit comments

Comments
 (0)