You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monaco-editor/azure-pipelines.yml

26 lines
467 B
YAML

# triggered by schedule at 5am to try make sure it's done after the TS daily build
schedules:
- cron: '0 5 * * *'
displayName: Daily 5am build
branches:
include:
- master
always: true
pr: none
pool:
vmImage: 'ubuntu-latest'
steps:
- bash: |
npm install
npm run run-nightly
displayName: 'Update & Build'
- bash: |
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
npm publish --tag next
displayName: 'Publish to NPM'