From 1c1e984b212637fe108c0ddade166bc39f0dd2ef Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Tue, 12 Dec 2017 09:25:30 +0100 Subject: Assure master is pushed as well when pushing tags Previously, master wasn't pushed, which might leave the commit that bumps the version on disk. That is rather confusing then. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c6ce5a9c..648b8595 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,6 @@ release: clean make force_release force_release: clean - git push --tags + git push --tags origin master python3 setup.py sdist bdist_wheel twine upload -s -i byronimo@gmail.com dist/* -- cgit v1.2.1