Skip to content

Commit

Permalink
Adds publishMonacoEditorCore and publishMonacoEditor options to night…
Browse files Browse the repository at this point in the history
…ly pipeline to publish skipped builds
  • Loading branch information
hediet committed Jan 23, 2024
1 parent 4fc8736 commit 381a6c8
Showing 1 changed file with 10 additions and 2 deletions.
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

0 comments on commit 381a6c8

Please sign in to comment.