Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

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

Merged
merged 1 commit into from
Jan 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .azure-pipelines/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ resources:
endpoint: Monaco

parameters:
- name: publishMonacoEditorCore
displayName: 🚀 Publish Monaco Editor Core
type: boolean
default: true
- name: publishMonacoEditor
displayName: 🚀 Publish Editor Core
type: boolean
default: true
- name: vscodeRef
displayName: The VS Code commit id.
type: string
Expand Down Expand Up @@ -56,7 +64,7 @@ extends:

tag: next
ghCreateTag: false
publishPackage: true
publishPackage: ${{ parameters.publishMonacoEditorCore }}
publishRequiresApproval: false

- name: monaco-editor
Expand All @@ -74,5 +82,5 @@ extends:
displayName: Setup, Build & Test monaco-editor

tag: next
publishPackage: true
publishPackage: ${{ parameters.publishMonacoEditor }}
publishRequiresApproval: false
Loading