image: Visual Studio 2015 build: off #---------------------------------# # environment configuration # #---------------------------------# shallow_clone: true platform: x64 environment: nodejs_version: "7.4.0" # Things to install after repo clone install: - ps: Install-Product node $env:nodejs_version $env:Platform - npm install -g npm@latest > Nul - npm config set msvs_version 2013 - npm install > NUL - node --version - npm --version - npm test cache: - '%APPDATA%\npm-cache -> package.json' - '%USERPROFILE%\.electron -> package.json' - 'node_modules -> package.json' #---------------------------------# # tests configuration # #---------------------------------# build_script: - if %APPVEYOR_REPO_TAG%==true npm run build-n-package:win #---------------------------------# # artifacts configuration # #---------------------------------# artifacts: - path: dist\win\* name: dist #---------------------------------# # deployment configuration # #---------------------------------# deploy: description: '' provider: GitHub auth_token: secure: Ffmgxn+wt5WSf/jgJ/L+/3mkUs4fn9Z5j4Dz73VATsgL14Rf/xUp2nOyE0ecow+1 artifact: dist on: branch: master appveyor_repo_tag: true