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)*