diff --git a/.drone.star b/.drone.star index 0b9b684..9a1889f 100644 --- a/.drone.star +++ b/.drone.star @@ -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 [] \ No newline at end of file