Allow builds to specify a force release var

This will let us automate patch releases by queuing a manual build

Fixes #2154
This commit is contained in:
Daniel Imms
2019-10-17 10:00:45 -07:00
parent 29e53c9c11
commit 990be060f2
+1 -1
View File
@@ -107,7 +107,7 @@ jobs:
- Windows
- Linux_IntegrationTests
- macOS_IntegrationTests
condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['Build.SourceBranch'], 'refs/heads/release/*')))
condition: and(succeeded(), or(eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['FORCE_RELEASE'], 'true')))
pool:
vmImage: 'ubuntu-16.04'
steps: