Skip to content

Commit

Permalink
Adjusted cond (#3583)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr authored Sep 5, 2023
1 parent 82c601f commit d41292f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .azuredevops/pipelineTemplates/stages.module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ stages:

- stage: deployment
displayName: Deployment validation
condition: and(eq('${{ parameters.deploymentValidation }}', 'True'), ne(dependencies.validation.result, 'Failed'))
condition: and(eq('${{ parameters.deploymentValidation }}', 'True'), not(in(dependencies.validation.result, 'Failed', 'Canceled')))
dependsOn:
- validation
jobs:
Expand Down

0 comments on commit d41292f

Please sign in to comment.