forked from deepstreamIO/deepstream.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (39 loc) · 1014 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
platform:
- x64
os:
- Visual Studio 2015
install:
- ps: Install-Product node 4
- npm install
test_script:
- node --version
- npm --version
- npm test
# Artifacts are packaged before before_deploy
- bash scripts\package.sh
- For /d %%d in ( build\** ) do MOVE %%d %cd%
artifacts:
- path: 'build\*.zip'
name: 'deepstream.io-release'
- path: '**\*.zip'
deploy:
- provider: S3
access_key_id:
secure: cq7lgQP04314hwXwM2l0yiUKRcOkwHeKkDHFULrThxE=
secret_access_key:
secure: AMUWZVZ4o7lS6f5ogqxTTCqDUR/TYEmPaVXzb7yRRyFUTF/zQFnZHYk1G/j7ie8/
bucket: ds-server-artifacts
folder: $(APPVEYOR_REPO_NAME)
on:
branch: master
appveyor_repo_tag: false
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: 'Release description'
auth_token:
secure: tZHuiZVCwkXRYMihVyoNrmDxAm6xPbXyop7Plg5uUWIIqA1EoUCrTYd/V+0D1I+Y
draft: true
artifact: 'deepstream.io-release'
on:
appveyor_repo_tag: true
build: off