From 795fffe42b301630778583fd50da356cd61a7b18 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Fri, 4 Apr 2025 19:47:33 -0700 Subject: [PATCH 1/3] Combine publishing stages in release publisher --- azure-pipelines.release-publish.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/azure-pipelines.release-publish.yml b/azure-pipelines.release-publish.yml index 2f3aac21446cc..1096a91608273 100644 --- a/azure-pipelines.release-publish.yml +++ b/azure-pipelines.release-publish.yml @@ -47,11 +47,11 @@ extends: os: windows stages: - - stage: Stage_1 + - stage: Publish displayName: Publish tarball jobs: - - job: Job_1 - displayName: Agent job + - job: npm + displayName: Publish tarball condition: succeeded() timeoutInMinutes: 0 templateContext: @@ -83,12 +83,8 @@ extends: customEndpoint: Typescript NPM publishEndpoint: Typescript NPM - - stage: Stage_2 - displayName: Publish git tag - dependsOn: Stage_1 - jobs: - - job: Job_1 - displayName: Agent job + - job: github + displayName: Publish git tag condition: succeeded() timeoutInMinutes: 0 templateContext: From ddbd30843848639cb11f76bf49c8c40ea1da346f Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Fri, 4 Apr 2025 19:48:28 -0700 Subject: [PATCH 2/3] tweak --- azure-pipelines.release-publish.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.release-publish.yml b/azure-pipelines.release-publish.yml index 1096a91608273..634d30b76bea0 100644 --- a/azure-pipelines.release-publish.yml +++ b/azure-pipelines.release-publish.yml @@ -50,7 +50,7 @@ extends: - stage: Publish displayName: Publish tarball jobs: - - job: npm + - job: tarball displayName: Publish tarball condition: succeeded() timeoutInMinutes: 0 @@ -84,7 +84,8 @@ extends: publishEndpoint: Typescript NPM - job: github - displayName: Publish git tag + displayName: Create github release + dependsOn: tarball condition: succeeded() timeoutInMinutes: 0 templateContext: From ac1d4b976658c1805f02876e9bfeb7ae230a2691 Mon Sep 17 00:00:00 2001 From: Jake Bailey <5341706+jakebailey@users.noreply.github.com> Date: Fri, 4 Apr 2025 19:48:52 -0700 Subject: [PATCH 3/3] Name --- azure-pipelines.release-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.release-publish.yml b/azure-pipelines.release-publish.yml index 634d30b76bea0..d8d6ff3c5b0ca 100644 --- a/azure-pipelines.release-publish.yml +++ b/azure-pipelines.release-publish.yml @@ -48,7 +48,7 @@ extends: stages: - stage: Publish - displayName: Publish tarball + displayName: Publish jobs: - job: tarball displayName: Publish tarball