mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-27 10:33:56 +08:00
46 lines
1.4 KiB
YAML
46 lines
1.4 KiB
YAML
version: '{build}'
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- /ci.*/
|
|
- /stable.*/
|
|
|
|
# We need to only clone the main module because our submodule requires the
|
|
# encrypted ssh key to access submodules
|
|
install:
|
|
- ps: Install-Product node $env:NODE_VERSION
|
|
- ps: nuget install secure-file -ExcludeVersion
|
|
- ps: npm config set msvs_version 2013
|
|
|
|
# We need to extract the encrypted private ssh key to clone the submodule.
|
|
- ps: |
|
|
if ($env:DECRYPTION_PASSWORD) {
|
|
secure-file\tools\secure-file -decrypt app\build\resources\certs\appveyor\win-nylas-n1.p12.enc -secret $env:DECRYPTION_PASSWORD
|
|
secure-file\tools\secure-file -decrypt app\build\resources\certs\appveyor\set_win_env.ps1.enc -secret $env:DECRYPTION_PASSWORD
|
|
. app\build\resources\certs\appveyor\set_win_env.ps1
|
|
}
|
|
|
|
build_script:
|
|
- cmd: npm install
|
|
|
|
deploy_script:
|
|
- ps: |
|
|
npm run build
|
|
node app/build/create-signed-windows-installer.js
|
|
npm run upload
|
|
|
|
environment:
|
|
matrix:
|
|
- NODE_VERSION: 7.10
|
|
global:
|
|
DEBUG: "electron-windows-installer:*,electron-packager:*"
|
|
SIGN_BUILD: true
|
|
CERTIFICATE_FILE: .\app\build\resources\certs\appveyor\win-nylas-n1.p12
|
|
DECRYPTION_PASSWORD:
|
|
secure: 48VSzDtdBd52Xlo3TZ1NeR1yRRrZ3AU6Px5XjD5RDp44cFU5GYVspecGqX6DGCV7i0D7nldGMyEbXNrjM1t1Kw==
|
|
|
|
cache:
|
|
- node_modules -> package.json
|
|
- packages\client-app\node_modules -> packages\client-app\package.json
|
|
- '%USERPROFILE%\.npm'
|