Merge pull request #2085 from KPrasch/master

Keep the 'v' when pushing a tag from Make.
pull/2086/head
K Prasch 2020-06-08 16:46:59 -07:00 committed by GitHub
commit 16a18f223e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)"