forked from siteserver/cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
61 lines (49 loc) · 1.2 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
version: 5.0.{build}
configuration:
- Release
environment:
nodejs_version: "6"
TreatWarningsAsErrors: false
# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
# install modules
- npm install g3 -g
- npm install gulp -g
- npm install
branches:
only:
- master
- dev
skip_tags: true
notifications:
- provider: GitHubPullRequest
on_build_success: true
on_build_failure: true
cache:
- packages -> **\packages.config
before_build:
- nuget restore source/siteserver.sln
after_build:
- cd home && npm install && cd ..
- g3 build home
- gulp build
- gulp zip
artifacts:
- path: siteserver_install.zip
name: siteserver_install
- path: siteserver_upgrade.zip
name: siteserver_upgrade
deploy:
release: siteserver-v$(appveyor_build_version)
description: 'SiteServer CMS'
provider: GitHub
auth_token:
secure: B/TFrPxGyyTS/NKTQsf/GBLPfGI+Rz/j3e7FVLaP6yjeUDljwkfvV70C+CT34/10
artifact: /.*\.zip/ # upload all to release assets
draft: false
prerelease: false
on:
branch: master
appveyor_repo_tag: false # deploy on tag push only