Skip to content

Commit 5b15795

Browse files
author
Evans Aboge (from Dev Box)
committed
Fix condition check
1 parent 38d078a commit 5b15795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.azure-pipelines/ci-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ extends:
321321

322322
- stage: Build_and_deploy_docker_images
323323
displayName: 'Build and deploy docker images'
324-
condition: and(or(contains(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['build.sourceBranch'], variables['PREVIEW_BRANCH'])), succeeded())
324+
condition: and(or(eq(variables['build.sourceBranch'], 'refs/tags/v'), eq(variables['build.sourceBranch'], variables['PREVIEW_BRANCH'])), succeeded())
325325
dependsOn: build
326326
jobs:
327327
- job: buildAndPush

0 commit comments

Comments
 (0)