-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
49 lines (41 loc) · 861 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
platform:
- x64
cache:
- node_modules
- app_compiled\node_modules
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 7 x64
- git reset --hard HEAD
- npm install npm -g
- npm install --silent
- npm prune
test_script:
- node --version
- npm --version
- npm test
build_script:
- npm run build_win
artifacts:
- path: dist\win\*.exe
name: x64installer
- path: dist\win-ia32\*.exe
name: ia32installer
- path: dist\*.7z
name: Archive
deploy:
description: 'editing'
provider: GitHub
auth_token:
secure: 0CGtR9o1TIDwfW1NfqASIdFfPcfJirWQIS+B0ekSs7nRjHEYHhcLZCWC3Uf1VQKO
artifact: x64Archive, ia32Archive
draft: true
prerelease: false
on:
appveyor_repo_tag: true
branches:
except:
- /^v\d+\.\d+\.\d+.*/