From 6976319f626d791f4eefdcd9fcdd449d87be5b4f Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Mon, 8 Jun 2020 16:35:19 -0700 Subject: [PATCH] Keep the 'v' when pushing a tag from Make. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 85332add5..55ef47e9b 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ release: clean # previous dry-run runs *without* --allow-dirty which ensures it's really just the release notes # file that we are allowing to sit here dirty, waiting to get included in the release commit. bumpversion --allow-dirty $(bump) - git push upstream master && git push upstream $(UPCOMING_VERSION) + git push upstream master && git push upstream v$(UPCOMING_VERSION) # Restore the original system setting for commit signing git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"