Skip to content

Commit

Permalink
automate private build detection (microsoft#179011)
Browse files Browse the repository at this point in the history
* automate private build detection

* debug

* debug

* fixup
  • Loading branch information
joaomoreno authored Apr 3, 2023
1 parent 59608d3 commit accffe1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions build/azure-pipelines/product-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ trigger:
include: ["main", "release/*"]

parameters:
- name: VSCODE_PRIVATE_BUILD
displayName: "Private Build"
type: boolean
default: false
- name: VSCODE_QUALITY
displayName: Quality
type: string
Expand Down Expand Up @@ -99,7 +95,7 @@ parameters:

variables:
- name: VSCODE_PRIVATE_BUILD
value: ${{ parameters.VSCODE_PRIVATE_BUILD }}
value: ${{ ne(variables['Build.Repository.Uri'], 'https://github.com/microsoft/vscode.git') }}
- name: NPM_REGISTRY
value: ${{ parameters.NPM_REGISTRY }}
- name: VSCODE_QUALITY
Expand Down

0 comments on commit accffe1

Please sign in to comment.