Skip to content

Commit

Permalink
Add stage condition for success (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
BernieWhite authored Jun 15, 2019
1 parent 25bd49b commit c698b93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .azure-pipelines/azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ stages:
- stage: Release
displayName: Release
dependsOn: Build
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v0.')
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/v0.'))
jobs:
- job:
displayName: Live
Expand Down

0 comments on commit c698b93

Please sign in to comment.