mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
24 lines
558 B
YAML
24 lines
558 B
YAML
trigger:
|
|
branches:
|
|
exclude:
|
|
- master
|
|
- 1.* # VSTS only supports wildcards at the end
|
|
|
|
phases:
|
|
|
|
- phase: GetReleaseVersion
|
|
steps:
|
|
# This has to be done separately because VSTS inexplicably
|
|
# exits the script block after `npm install` completes.
|
|
- script: |
|
|
cd script\vsts
|
|
npm install
|
|
displayName: npm install
|
|
- script: node script\vsts\get-release-version.js
|
|
name: Version
|
|
|
|
# Import OS-specific build definitions
|
|
- template: platforms/windows.yml
|
|
- template: platforms/macos.yml
|
|
- template: platforms/linux.yml
|