Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorJoão Moreno <joao.moreno@microsoft.com>2022-07-15 12:10:39 +0300
committerGitHub <noreply@github.com>2022-07-15 12:10:39 +0300
commit17213dc9bd19e81208ced7d0e685537c3caa3702 (patch)
tree1e8c1103981c2cd77cf7a1fa6972cf4f84221f57 /build
parent1cd90cceddf3c413673963ab6f154d2ff294b17c (diff)
Publish stage should wait for web stage (#155284)
publish stage should wait for web stage
Diffstat (limited to 'build')
-rw-r--r--build/azure-pipelines/product-publish.ps11
-rw-r--r--build/azure-pipelines/product-publish.yml1
2 files changed, 2 insertions, 0 deletions
diff --git a/build/azure-pipelines/product-publish.ps1 b/build/azure-pipelines/product-publish.ps1
index 5abfed48dca..5006ec61a30 100644
--- a/build/azure-pipelines/product-publish.ps1
+++ b/build/azure-pipelines/product-publish.ps1
@@ -46,6 +46,7 @@ $stages = @(
if ($env:VSCODE_BUILD_STAGE_WINDOWS -eq 'True') { 'Windows' }
if ($env:VSCODE_BUILD_STAGE_LINUX -eq 'True') { 'Linux' }
if ($env:VSCODE_BUILD_STAGE_MACOS -eq 'True') { 'macOS' }
+ if ($env:VSCODE_BUILD_STAGE_WEB -eq 'True') { 'Web' }
)
do {
diff --git a/build/azure-pipelines/product-publish.yml b/build/azure-pipelines/product-publish.yml
index 4d711aba120..80076fd666d 100644
--- a/build/azure-pipelines/product-publish.yml
+++ b/build/azure-pipelines/product-publish.yml
@@ -109,6 +109,7 @@ steps:
if ($env:VSCODE_BUILD_STAGE_WINDOWS -eq 'True') { 'Windows' }
if ($env:VSCODE_BUILD_STAGE_LINUX -eq 'True') { 'Linux' }
if ($env:VSCODE_BUILD_STAGE_MACOS -eq 'True') { 'macOS' }
+ if ($env:VSCODE_BUILD_STAGE_WEB -eq 'True') { 'Web' }
)
Write-Host "Stages to check: $stages"