From b56619e1df8e431fbfeea35213a23f4221ac9088 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 94b7452b851..993ccff8f8e 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -154,7 +154,7 @@ main() { # shellcheck disable=SC2038,SC2046,SC2185 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