From fc95a32d05f0adb12c138c0a7f2ffde7e0eae843 Mon Sep 17 00:00:00 2001 From: James Flynn Date: Tue, 2 Mar 2021 16:22:10 +0000 Subject: [PATCH] Fixed: stage names --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 82eeafe65..41a6ee052 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -14,7 +14,7 @@ pool: name: $(Build.DefinitionName).$(SourceBranchName).$(Date:yyyyMMdd)$(Rev:.r) stages: - - stage: ContinuousIntegration+Delivery + - stage: CI_CDelivery displayName: 'Continuous Integration and Delivery' dependsOn: [] jobs: @@ -88,9 +88,9 @@ stages: parallel: true # Increased speed through multi-threaded copying. parallelCount: 8 # Dependent upon CPU capabilities. - - stage: ContinuousDeployment + - stage: CDeployment displayName: 'Continuous Deployment' - dependsOn: [ContinuousIntegration+Delivery] + dependsOn: [CI_CDelivery] condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main')) jobs: - job: DeployWebApp