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) ) )