mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
image: Visual Studio 2015
|
|
build: off
|
|
|
|
#---------------------------------#
|
|
# environment configuration #
|
|
#---------------------------------#
|
|
|
|
shallow_clone: true
|
|
platform: x64
|
|
environment:
|
|
NODEJS_VERSION: "7"
|
|
CSC_LINK: '%WINDOWS_CSC_LINK%'
|
|
CSC_KEY_PASSWORD: '%WINDOWS_CSC_KEY_PASSWORD%'
|
|
|
|
# Things to install after repo clone
|
|
install:
|
|
- ps: Install-Product node $env:NODEJS_VERSION $env:Platform
|
|
- npm install -g npm@5 > 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:
|
|
appveyor_repo_tag: true
|