mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 11:35:40 +01:00
Adds publishMonacoEditorCore and publishMonacoEditor options to nightly pipeline to publish skipped builds
This commit is contained in:
parent
4fc87360d1
commit
6c7087b94e
1 changed files with 10 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue