From 777ac3a47f04b8c05f58117e6eb3643b16f12f4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Divino=20C=C3=A9sar?= Date: Tue, 10 Sep 2019 17:56:47 -0700 Subject: [PATCH] Fix stage chaining (dotnet/core-setup#8142) Commit migrated from https://github.com/dotnet/core-setup/commit/50a1494757e59b171d3c0b9d1508571b08a3dd24 --- eng/pipelines/installer/azure-pipelines.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/eng/pipelines/installer/azure-pipelines.yml b/eng/pipelines/installer/azure-pipelines.yml index da9738744b8..c8d2187dde5 100644 --- a/eng/pipelines/installer/azure-pipelines.yml +++ b/eng/pipelines/installer/azure-pipelines.yml @@ -183,27 +183,27 @@ stages: # bar: # storage: dependsOnPublishStages: - - dependsOn: NetCore_Dev30_Publish_Validation + - dependsOn: NetCore_Dev30_Publish channel: name: .NET Core 3 Dev bar: PublicDevRelease_30_Channel_Id storage: release/3.0 - - dependsOn: NetCore_Dev31_Publish_Validation + - dependsOn: NetCore_Dev31_Publish channel: name: .NET Core 3.1 Dev bar: PublicDevRelease_31_Channel_Id storage: release/3.1 - - dependsOn: NetCore_Release31_Publish_Validation + - dependsOn: NetCore_Release31_Publish channel: name: .NET Core 3.1 Release bar: PublicRelease_31_Channel_Id storage: release/3.1-preview1 - - dependsOn: NetCore_Dev5_Publish_Validation + - dependsOn: NetCore_Dev5_Publish channel: name: .NET Core 5 Dev bar: NetCore_5_Dev_Channel_Id storage: master - - dependsOn: PVR_PublishValidation + - dependsOn: PVR_Publish channel: name: .NET Tools - Validation bar: PublicValidationRelease_30_Channel_Id -- GitLab