* Add commang to push to master to the 'publish' task.

This commit is contained in:
Matthew Honnibal 2015-01-05 17:55:51 +11:00
parent dd5a6be171
commit 4d49d19cfe

1
fabfile.py vendored
View File

@ -33,6 +33,7 @@ def publish():
with virtualenv(VENV_DIR):
local('python setup.py register')
local('twine upload dist/*.tar.gz')
local('git push origin master')
def setup():