forked from ottomated/CrewLink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
28 lines (28 loc) · 809 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
os: unstable
cache:
- node_modules
environment:
matrix:
- nodejs_version: 14
install:
- ps: Install-Product node $env:nodejs_version
- set CI=true
- npm install -g npm@latest
- set PATH=%APPDATA%\npm;%PATH%
- npm install -g yarn@latest
- yarn install
- if not exist "node_modules\iohook\builds\electron-v80-win32-x64\build\Release\" mkdir -p node_modules\iohook\builds\electron-v80-win32-x64\build\Release\
- cp iohook\iohook.node node_modules\iohook\builds\electron-v80-win32-x64\build\Release\
- cp iohook\uiohook.dll node_modules\iohook\builds\electron-v80-win32-x64\build\Release\
matrix:
fast_finish: true
test: off
version: '{build}'
shallow_clone: true
clone_depth: 1
build_script:
- yarn run publish
artifacts:
- path: dist/win-unpacked
name: unpacked
type: zip