forked from ZeroNetJS/zeronet-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (32 loc) · 872 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
version: "{build}"
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
matrix:
fast_finish: true
install:
# Install Node.js
- ps: Install-Product node $env:nodejs_version
# Upgrade npm
- npm install -g npm
# Output our current versions for debugging
- node --version
- npm --version
# Install our package dependencies
- npm install
- cmd /C .\tools\scripts\pkg.cmd
test_script:
- npm run test:node
build: off
deploy:
description: '_changelog to be added for $(appveyor_build_version)_'
provider: GitHub
auth_token:
secure: 8n7Luu7L7xQcYdhmWEyevOpIsQuyzHn+0FMLoqE7ahj9vuQSOMINU0dNMcW0Pkvq
artifact: /\.pkg\\zeronet-*/ # upload pkg
draft: false
prerelease: true
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only