Files
sqltoolsservice/azure-pipelines/build-and-release.yml
2021-05-28 13:41:04 -07:00

26 lines
402 B
YAML

trigger: none
pr: none
stages:
- stage: Build
jobs:
- job: Build
pool:
vmImage: 'windows-latest'
demands:
- Cmd
- npm
steps:
- template: build.yml
- stage: Release
dependsOn:
- Build
condition: and(succeeded(), eq(variables['RELEASE'], 'true'))
pool:
vmImage: 'ubuntu-latest'
jobs:
- job: Release
steps:
- template: release.yml