diff options
author | 2019-06-30 14:59:38 -0700 | |
---|---|---|
committer | 2019-06-30 14:59:38 -0700 | |
commit | 17adb3a72b94b5d1ecf9cecf2febc75ef5329015 (patch) | |
tree | da0a2fd7e9fd819a4246ef59dc1b718aa531a275 | |
parent | Set variables (diff) |
Use output var directly
-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 5a15060..5cfdb1a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -34,7 +34,7 @@ jobs: condition: > and( succeeded(), - eq(variables.BASE_CHANGED, True) + eq(dependencies.test.outputs['check.BASE_CHANGED'], True) ) dependsOn: test |