Skip to content

Commit 198b7f1

Browse files
[Couortesy push] Fix parameter for deployment tasks (#19340)
- Fixed parameter for deployment tasks
1 parent 786c505 commit 198b7f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/build-all-tasks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ steps:
2626
# Build tasks
2727
- script: node make.js serverBuild --task "$(task_pattern)"
2828
displayName: Build tasks using pattern
29-
condition: and(succeeded(), eq(parameters.deploy_all_tasks, 'false'))
29+
condition: and(succeeded(), eq('${{ parameters.deploy_all_tasks }}', false))
3030

3131
# Build all tasks
3232
- script: node make.js serverBuild
3333
displayName: Build all tasks
34-
condition: and(succeeded(), eq(parameters.deploy_all_tasks, 'true'))
34+
condition: and(succeeded(), eq('${{ parameters.deploy_all_tasks }}', true))
3535

3636
# Stage tasks individually into the package directory
3737
- script: node ./ci/stage-package.js true individually

0 commit comments

Comments
 (0)