diff options
| -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 | 
