From 91ea0399e0b38ab6613d6198097f49799e26be68 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Wed, 1 Jul 2020 23:15:55 -0400 Subject: [PATCH] Update makefile --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index a2051585..746e2735 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ test-publish: cythonize # Upload distributions to PyPI twine upload --repository testpypi dist/dependency-injector-$(VERSION)* -publish: cythonize +tag: # Merge release to master branch git checkout master git merge --no-ff release/$(VERSION) -m "Merge branch 'release/$(VERSION)' into master" @@ -81,7 +81,3 @@ publish: cythonize # Create and upload tag git tag -a $(VERSION) -m 'version $(VERSION)' git push --tags - # Create distributions - python setup.py sdist - # Upload distributions to PyPI - twine upload dist/dependency-injector-$(VERSION)*