From b1e9c73d88f55d390129dc6261689f3e8fb74391 Mon Sep 17 00:00:00 2001 From: Quin Lynch <49576606+quinchs@users.noreply.github.com> Date: Sat, 25 Sep 2021 15:14:30 -0300 Subject: [PATCH] Update azure-pipelines.yml --- azure-pipelines.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4f68b05ac..68a0b8421 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,22 +16,15 @@ jobs: pool: default steps: - template: azure/build.yml + - template: azure/deploy.yml -- job: Windows_build - pool: - vmImage: 'windows-latest' - condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev') - steps: - - template: azure/build.yml - -- job: Windows_deploy - pool: - vmImage: 'windows-latest' +- job: Linux_deploy + pool: default condition: | and ( succeeded(), or ( - eq(variables['Build.SourceBranch'], 'refs/heads/dev'), + eq(variables['Build.SourceBranch'], 'refs/heads/release/3.x'), eq(variables['buildTag'], True) ) )