Skip to content

Commit 7e2981e

Browse files
authored
eng: fix missing VSCODE_CHECK_ONLY in CLI publish step (microsoft#203926)
1 parent 8d961d7 commit 7e2981e

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

build/azure-pipelines/alpine/cli-build-alpine.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ steps:
9393
- template: ../cli/cli-publish.yml
9494
parameters:
9595
VSCODE_CLI_ARTIFACT: vscode_cli_alpine_arm64_cli
96+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}
9697

9798
- ${{ if eq(parameters.VSCODE_BUILD_ALPINE, true) }}:
9899
- template: ../cli/cli-publish.yml
99100
parameters:
100101
VSCODE_CLI_ARTIFACT: vscode_cli_alpine_x64_cli
102+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}

build/azure-pipelines/darwin/cli-build-darwin.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ steps:
7070
- template: ../cli/cli-publish.yml
7171
parameters:
7272
VSCODE_CLI_ARTIFACT: unsigned_vscode_cli_darwin_x64_cli
73+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}
7374

7475
- ${{ if eq(parameters.VSCODE_BUILD_MACOS_ARM64, true) }}:
7576
- template: ../cli/cli-publish.yml
7677
parameters:
7778
VSCODE_CLI_ARTIFACT: unsigned_vscode_cli_darwin_arm64_cli
79+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}

build/azure-pipelines/linux/cli-build-linux.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,13 +129,16 @@ steps:
129129
- template: ../cli/cli-publish.yml
130130
parameters:
131131
VSCODE_CLI_ARTIFACT: vscode_cli_linux_armhf_cli
132+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}
132133

133134
- ${{ if eq(parameters.VSCODE_BUILD_LINUX, true) }}:
134135
- template: ../cli/cli-publish.yml
135136
parameters:
136137
VSCODE_CLI_ARTIFACT: vscode_cli_linux_x64_cli
138+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}
137139

138140
- ${{ if eq(parameters.VSCODE_BUILD_LINUX_ARM64, true) }}:
139141
- template: ../cli/cli-publish.yml
140142
parameters:
141143
VSCODE_CLI_ARTIFACT: vscode_cli_linux_arm64_cli
144+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}

build/azure-pipelines/win32/cli-build-win32.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,10 @@ steps:
7171
- template: ../cli/cli-publish.yml
7272
parameters:
7373
VSCODE_CLI_ARTIFACT: unsigned_vscode_cli_win32_arm64_cli
74+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}
7475

7576
- ${{ if eq(parameters.VSCODE_BUILD_WIN32, true) }}:
7677
- template: ../cli/cli-publish.yml
7778
parameters:
7879
VSCODE_CLI_ARTIFACT: unsigned_vscode_cli_win32_x64_cli
80+
VSCODE_CHECK_ONLY: ${{ parameters.VSCODE_CHECK_ONLY }}

0 commit comments

Comments
 (0)