We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786c505 commit 198b7f1Copy full SHA for 198b7f1
ci/build-all-tasks.yml
@@ -26,12 +26,12 @@ steps:
26
# Build tasks
27
- script: node make.js serverBuild --task "$(task_pattern)"
28
displayName: Build tasks using pattern
29
- condition: and(succeeded(), eq(parameters.deploy_all_tasks, 'false'))
+ condition: and(succeeded(), eq('${{ parameters.deploy_all_tasks }}', false))
30
31
# Build all tasks
32
- script: node make.js serverBuild
33
displayName: Build all tasks
34
- condition: and(succeeded(), eq(parameters.deploy_all_tasks, 'true'))
+ condition: and(succeeded(), eq('${{ parameters.deploy_all_tasks }}', true))
35
36
# Stage tasks individually into the package directory
37
- script: node ./ci/stage-package.js true individually
0 commit comments