UNPKG

684 BYAMLView Raw
1# 编译平台
2language: node_js
3
4# 编译版本
5node_js:
6 - "6.11.2"
7
8# 指定分支
9branches:
10 only:
11 - master
12
13# 安装依赖
14install:
15 - npm install
16
17# 执行编译
18script:
19 - npm run build
20
21# 推送代码
22after_success:
23 - cd dist
24 - mv static/CNAME .
25 - git init
26 - git config user.name "yozman"
27 - git config user.email "yozman@sina.com"
28 - git add .
29 - git commit -m "$TRAVIS_COMMIT"
30 - git push -f -q "https://$GITHUB_TOKEN@github.com/$TRAVIS_REPO_SLUG.git" master:gh-pages
31
32# 缓存依赖
33cache:
34 directories:
35 - node_modules
36
37# 消息通知
38notifications:
39 webhooks:
40 urls:
41 - https://hooks.pubu.im/services/2k9gdn43rywwcmw
42 on_start: always