From be30f8e78f6c4e2ad47c9c9623597a4f8d9a9cba Mon Sep 17 00:00:00 2001 From: El RIDO Date: Sun, 11 Dec 2022 06:15:13 +0100 Subject: [PATCH] tag needs to be signed --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1ef6fdb..2f1edb1e 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ increment: ## Increment and commit new version number, set target version using git commit -m "incrementing version" sign: ## Sign a release. - git tag $(VERSION) + git tag --sign --message "Release v$(VERSION)" $(VERSION) git push origin $(VERSION) signrelease.sh