diff options
author | 2019-06-29 20:47:27 -0700 | |
---|---|---|
committer | 2019-06-29 20:47:27 -0700 | |
commit | 55188b5ef2e1771eabe566f345dd02bb6eb1c437 (patch) | |
tree | 364baf3ab605628e1ba05ee43db9b7029dccc2d8 | |
parent | Test conditions (diff) |
Try to fix 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 98e17e5..c901d92 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($(check.BASE_PULL), 'true')) displayName: 'Use Output Variable in Condition' - job: build |