From e6c2898f1cf5ebc67c0aa7e71473472290fe5774 Mon Sep 17 00:00:00 2001 From: Francisco Gamino Date: Tue, 28 Feb 2023 11:58:57 -0800 Subject: [PATCH] Set IsReleaseBuild only for non-integration builds (#919) --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c1256877..b271f9f2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -37,6 +37,7 @@ steps: displayName: 'Set IsReleaseBuild variable' env: BuildSourceBranch: $(Build.SourceBranch) + condition: eq(variables['UPLOADPACKAGETOPRERELEASEFEED'], 'false') - pwsh: ./build.ps1 -NoBuild -Bootstrap displayName: 'Running ./build.ps1 -NoBuild -Bootstrap'