summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2017-12-12 09:25:30 +0100
committerSebastian Thiel <byronimo@gmail.com>2017-12-12 09:25:30 +0100
commit1c1e984b212637fe108c0ddade166bc39f0dd2ef (patch)
tree03224bd6f145bf9127c131bd0fe0c680eaf704c2
parent9d15bc65735852d3dce5ca6d779a90a50c5323b8 (diff)
downloadgitpython-1c1e984b212637fe108c0ddade166bc39f0dd2ef.tar.gz
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.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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/*