From 7e8e0bf1f907c63b62b1b98cfadf07859d616034 Mon Sep 17 00:00:00 2001 From: James Blair Date: Mon, 16 Sep 2024 11:31:30 +1200 Subject: [PATCH] Ensure commits are signed in scripts/release.sh. Signed-off-by: James Blair --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index 7c457e41d68..c2940a1fcd1 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -154,7 +154,7 @@ main() { # shellcheck disable=SC2038,SC2046 run git add $(find . -name go.mod ! -path './release/*'| xargs) run git diff --staged | cat - run git commit -m "version: bump up to ${VERSION}" + run git commit --signoff --message "version: bump up to ${VERSION}" run git diff --staged | cat fi