deploy script now deploys the current branch
This commit is contained in:
Vendored
+2
-1
@@ -8,7 +8,8 @@ env.hosts = (
|
|||||||
|
|
||||||
|
|
||||||
def deploy():
|
def deploy():
|
||||||
local('git archive --format tar.gz -o /tmp/api.tar.gz master', capture=False)
|
branch = local('git rev-parse --abbrev-ref HEAD', capture=True)
|
||||||
|
local('git archive --format tar.gz -o /tmp/api.tar.gz {0}'.format(branch), capture=False)
|
||||||
put('/tmp/api.tar.gz', '/tmp/api.tar.gz')
|
put('/tmp/api.tar.gz', '/tmp/api.tar.gz')
|
||||||
with cd('/srv/api'):
|
with cd('/srv/api'):
|
||||||
run('tar xzf /tmp/api.tar.gz')
|
run('tar xzf /tmp/api.tar.gz')
|
||||||
|
|||||||
Reference in New Issue
Block a user