From e1e27267681db74c9c646f0995ce9e881b4df4c6 Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Mon, 7 Oct 2019 13:05:24 +0100 Subject: [PATCH] Fix condition in Release Pipeline --- azure-pipelines/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/release.yml b/azure-pipelines/release.yml index c74179ee..f532713c 100644 --- a/azure-pipelines/release.yml +++ b/azure-pipelines/release.yml @@ -46,7 +46,7 @@ stages: name: 'VersionRelease' displayName: 'Set Version Information for Release' workingDirectory: ./build - condition: not(succeeded('VersionNightly')) + condition: and(ne(variables['Build.Reason'], 'Schedule'), ne(variables['runForRelease'], False)) # Run for non-scheduled (release) - stage: Release jobs: - job: 'Linux'