diff options
| author | 2019-06-29 20:51:18 -0700 | |
|---|---|---|
| committer | 2019-06-29 20:51:18 -0700 | |
| commit | 0a97a394cf06dc639cf56b4df5fa1d5f20da1d49 (patch) | |
| tree | 5165bb70c017967d0c7ce3a5a7320051d89f6855 | |
| parent | Try to fix condition (diff) | |
Try again to fix the condition
| -rw-r--r-- | azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c901d92..f8550d8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,7 @@ jobs: displayName: 'Echo Output Variable in Same Job' - script: echo foo - condition: and(succeeded(), eq($(check.BASE_PULL), 'true')) + condition: and(succeeded(), eq(variables['check.BASE_PULL'], 'true')) displayName: 'Use Output Variable in Condition' - job: build |