1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
pool:
name: Azure Pipelines
# Publish only if changes to TypeScript directory are committed to main.
trigger:
branches:
include:
- main
paths:
include:
- ts
pr: none
variables:
Codeql.Enabled: true
steps:
- template: typescript-build-steps.yaml
- task: Npm@1
displayName: 'Publish packages to external feed'
inputs:
command: custom
workingDir: ts
verbose: false
customCommand: 'run publish --access public'
customRegistry: useNpmrc
customEndpoint: 'dev-tunnels-npm'
|