From b12097e73e3763c7189634e213b2b78b2a146a1c Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 9 Jan 2014 20:24:39 +0100 Subject: [PATCH] Sign release tags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9cbf79cf..34813f7c 100644 --- a/Makefile +++ b/Makefile @@ -54,7 +54,7 @@ dist: RELEASE=`./nextversion.sh` ;\ perl -p -i -e "s/^#define NOTION_RELEASE.*/#define NOTION_RELEASE \"$$RELEASE\"/" version.h ;\ git add version.h; git commit -m "Releasing version $$RELEASE" ;\ - git tag $$RELEASE ; git push --tags ;\ + git tag -s -m "Release $$RELEASE" $$RELEASE ; git push --tags ;\ git archive --prefix notion-$$RELEASE/ --format=tar.gz $$RELEASE > ../notion-$$RELEASE-src.tar.gz ;\ git archive --prefix notion-$$RELEASE/ --format=tar $$RELEASE | bzip2 > ../notion-$$RELEASE-src.tar.bz2 ;\ perl -p -i -e "s/^#define NOTION_RELEASE.*/#define NOTION_RELEASE \"snapshot\"/" version.h ;\ -- 2.11.4.GIT