Skip to content

Commit

Permalink
Merge pull request #7783 from owncloud/notify-after-build
Browse files Browse the repository at this point in the history
[ci][full-ci] Make notify pipeline dependent on build pipeline
  • Loading branch information
individual-it authored Oct 13, 2022
2 parents 83d136c + 6cd66e9 commit c69ba1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -830,7 +830,7 @@ def stagePipelines(ctx):
return unit_test_pipelines + pipelinesDependsOn(e2e_pipelines + acceptance_pipelines, unit_test_pipelines)

def afterPipelines(ctx):
return build(ctx) + notify()
return build(ctx) + pipelinesDependsOn(notify(), build(ctx))

def yarnCache(ctx):
return [{
Expand Down

0 comments on commit c69ba1a

Please sign in to comment.