Adds publishMonacoEditorCore and publishMonacoEditor options to nightly pipeline to publish skipped builds

This commit is contained in:
Henning Dieterichs 2024-01-23 16:34:51 +01:00 committed by Henning Dieterichs
parent 4fc87360d1
commit 6c7087b94e

View file

@ -24,6 +24,14 @@ resources:
endpoint: Monaco endpoint: Monaco
parameters: parameters:
- name: publishMonacoEditorCore
displayName: 🚀 Publish Monaco Editor Core
type: boolean
default: true
- name: publishMonacoEditor
displayName: 🚀 Publish Editor Core
type: boolean
default: true
- name: vscodeRef - name: vscodeRef
displayName: The VS Code commit id. displayName: The VS Code commit id.
type: string type: string
@ -56,7 +64,7 @@ extends:
tag: next tag: next
ghCreateTag: false ghCreateTag: false
publishPackage: true publishPackage: ${{ parameters.publishMonacoEditorCore }}
publishRequiresApproval: false publishRequiresApproval: false
- name: monaco-editor - name: monaco-editor
@ -74,5 +82,5 @@ extends:
displayName: Setup, Build & Test monaco-editor displayName: Setup, Build & Test monaco-editor
tag: next tag: next
publishPackage: true publishPackage: ${{ parameters.publishMonacoEditor }}
publishRequiresApproval: false publishRequiresApproval: false