forked from muffinista/before-dawn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
50 lines (39 loc) · 871 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
50
#
# NOTE: a bunch of things are actually setup on appveyor itself and
# not in this file. i'll try and document that at some point.
#
os: unstable
platform:
- x64
cache:
- "%LOCALAPPDATA%\\Yarn"
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
environment:
matrix:
- nodejs_version: '8'
# GH_TOKEN:
# secure: 'hWq+UymjZYRfgJPKsRQ8bBFwkcMHpLglVbYe0FH2w0zdQ6/8Dp3mo/19RFKIpZkU'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- git reset --hard HEAD
- yarn install
- set PATH=%APPDATA%\npm;%PATH%
matrix:
fast_finish: true
test: off
skip_commits:
message: /\[ci\s+skip\]/
build_script:
- node --version
- yarn release
only_commits:
message: /build/
# deploy:
# - provider: GitHub
# artifact: /*.exe/
# draft: true
# force_update: true