forked from storj-archived/storjshare-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (38 loc) · 893 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
environment:
matrix:
- platform: x86
nodejs_version: "5"
arch: "32"
- platform: x64
nodejs_version: "5"
arch: "64"
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version $env:platform)
- npm -g install npm@2
- set PATH=%APPDATA%\npm;%PATH%
- set PATH="C:\Program Files (x86)\NSIS";%PATH%
- npm install
build: off
test_script:
# Output useful info for debugging.
- node --version
- npm --version
# run tests
#- npm test
after_test:
- npm run release
- ps: "cd releases"
- ren *.exe *.win%arch%.exe
artifacts:
- path: releases\*.win32.exe
- path: releases\*.win64.exe
deploy:
- provider: GitHub
tag: ChangeMe
release: autobin draft release
auth_token:
secure: bPlHCdaxjgVJXAW2CooVSnyJr0pHg+qu2HdsS27HgVDRRXlTO+mgMk7V3+N/OTe+
artifact: /.*\.exe/
draft: true
on:
branch: master