.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Giles Bradshaw 2020-04-26 09:19:22 +01:00
parent 7a4db5e924
commit 68a030567d
1 changed files with 7 additions and 4 deletions

View File

@ -220,8 +220,11 @@ def steps(name, dependsOn):
def main(ctx):
print(ctx)
print('where is this')
return [
steps('first', []),
steps('second', ['first'])
]
if ctx.build.branch == 'home-deploy-1':
return [
steps('first', []),
steps('second', ['first'])
]
else:
return []