-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
48 lines (38 loc) · 973 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
version: v0.0.{build}
skip_non_tags: true
environment:
access_token:
secure: 1tvNi1Tb8CC7s3rWEKQpdZj+OfLog51KdRAqX1QJ5RWC+7NY27vpSqbKRzM/TZOs
platform:
- x64
artifacts:
- path: "dist\\*.exe"
name: release
- path: "dist\\latest.yml"
name: latest
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 6 x64
- npm install npm -g
- npm install electron-builder@next
- npm install
build_script:
- node --version
- npm --version
- npm run release # build and rename exe file
- node win32_make_set_ENV > tmp.bat
- tmp.bat
test: off
before_deploy:
deploy:
release: $(APPVEYOR_REPO_TAG_NAME)
description: $(APP_SHORTNAME) Setup $(RELEASE_VERSION) {message} # eg TANet-Roamer Setup xxxxxmessagexxxx
provider: GitHub
auth_token:
secure: 1tvNi1Tb8CC7s3rWEKQpdZj+OfLog51KdRAqX1QJ5RWC+7NY27vpSqbKRzM/TZOs
draft: false
prerelease: false
skip_cleanup: true
on:
appveyor_repo_tag: true