Skip to content

Commit 17213dc

Browse files
authored
Publish stage should wait for web stage (microsoft#155284)
publish stage should wait for web stage
1 parent 1cd90cc commit 17213dc

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

build/azure-pipelines/product-publish.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ $stages = @(
4646
if ($env:VSCODE_BUILD_STAGE_WINDOWS -eq 'True') { 'Windows' }
4747
if ($env:VSCODE_BUILD_STAGE_LINUX -eq 'True') { 'Linux' }
4848
if ($env:VSCODE_BUILD_STAGE_MACOS -eq 'True') { 'macOS' }
49+
if ($env:VSCODE_BUILD_STAGE_WEB -eq 'True') { 'Web' }
4950
)
5051

5152
do {

build/azure-pipelines/product-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ steps:
109109
if ($env:VSCODE_BUILD_STAGE_WINDOWS -eq 'True') { 'Windows' }
110110
if ($env:VSCODE_BUILD_STAGE_LINUX -eq 'True') { 'Linux' }
111111
if ($env:VSCODE_BUILD_STAGE_MACOS -eq 'True') { 'macOS' }
112+
if ($env:VSCODE_BUILD_STAGE_WEB -eq 'True') { 'Web' }
112113
)
113114
Write-Host "Stages to check: $stages"
114115

0 commit comments

Comments
 (0)