diff options
| author | 2019-06-29 21:01:46 -0700 | |
|---|---|---|
| committer | 2019-06-29 21:01:46 -0700 | |
| commit | 4eb6edfcbd7735128c60627aac37526b40f8ab48 (patch) | |
| tree | 5d9b8f2b00bce9466cca170907460e2902e90ed6 | |
| parent | Use boolean literals (diff) | |
Set BASE_PULL to False from script
| -rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 33a80c9..8f1e98e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -18,7 +18,7 @@ jobs: - script: | echo "##vso[task.setvariable variable=BASE_CHANGED;isOutput=true]False" echo "##vso[task.setvariable variable=VENV_CHANGED;isOutput=true]False" - echo "##vso[task.setvariable variable=BASE_PULL;isOutput=true]True" + echo "##vso[task.setvariable variable=BASE_PULL;isOutput=true]False" name: check displayName: 'Set Variables' @@ -26,7 +26,7 @@ jobs: displayName: 'Echo Output Variable in Same Job' - script: echo foo - condition: and(succeeded(), eq(variables.check.BASE_PULL, True)) + condition: and(succeeded(), eq(variables['check.BASE_PULL'], True)) displayName: 'Use Output Variable in Condition' - job: build |