mirror of
https://github.com/atom/atom.git
synced 2026-01-24 06:18:03 -05:00
This change adds automation for producing nightly Atom releases using VSTS CI. Most of the changes are just slight modifications to Atom's existing build scripts to produce another build channel and publish those artifacts in a way that can be installed and updated when new releases are available.
6 lines
122 B
Batchfile
6 lines
122 B
Batchfile
@IF EXIST "%~dp0\node.exe" (
|
|
"%~dp0\node.exe" "%~dp0\publish-release" %*
|
|
) ELSE (
|
|
node "%~dp0\publish-release" %*
|
|
)
|