From 6c068e765f8c55b56a2eff364c4ce0c225c9895b Mon Sep 17 00:00:00 2001 From: Michael Auer Date: Wed, 15 Jul 2020 15:30:01 +0000 Subject: [PATCH] azure-pipelines.yml: added hotfix/* for prod-build --- azure-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 13c35ee7d..8a5987d28 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -23,7 +23,7 @@ jobs: demands: - Agent.OS -equals Linux - docker - condition: and(ne(variables['Build.SourceBranch'], 'refs/heads/develop'), ne(variables['Build.SourceBranch'], 'refs/heads/integration'), ne(variables['Build.SourceBranch'], 'refs/heads/master')) + condition: and(ne(variables['Build.SourceBranch'], 'refs/heads/develop'), ne(variables['Build.SourceBranch'], 'refs/heads/integration'), ne(variables['Build.SourceBranch'], 'refs/heads/master'), ne(variables['Build.SourceBranch'], 'refs/heads/hotfix/*')) steps: - task: npmAuthenticate@0 displayName: 'npm auth' @@ -88,7 +88,7 @@ jobs: demands: - Agent.OS -equals Linux - docker - condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/integration'), eq(variables['Build.SourceBranch'], 'refs/heads/master')) + condition: or(eq(variables['Build.SourceBranch'], 'refs/heads/integration'), eq(variables['Build.SourceBranch'], 'refs/heads/master'), eq(variables['Build.SourceBranch'], 'refs/heads/hotfix/*')) steps: - task: npmAuthenticate@0 displayName: 'npm auth'