forked from inoutcode/bitcoin_book_2nd
-
Notifications
You must be signed in to change notification settings - Fork 22
/
.travis.yml
56 lines (49 loc) · 1.52 KB
/
.travis.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
# 指定环境语言
language: node_js
# 指定sudo权限
sudo: required
# 指定node版本
node_js: stable
# 指定缓存模块,缓存可以加速编译
cache:
directories:
- node_modules
# 邮件通知,这里配置不管成功或是失败都通知
notifications:
email:
recipients:
- 01360086@me.mcu.edu.tw
on_success: always # default: change
on_failure: always # default: always
# 构建的分支
branches:
only:
- master
# 调整时区
before_install:
- export TZ='Asia/Shanghai'
# 安装环境
install:
- npm install -g gitbook-cli
- gitbook install
# gitbook生成静态文件
script:
- gitbook build
# 生成文件后,进入静态文件目录,部署到指定仓库,需要填写用户名,邮件
# 这里要说的是 GH_USER 和 GH_PASSWORD 这两个变量是 在`Travis`后台设置。 正常来说 使用GitHub Token 也可以,但是由于我这边有些问题,没有配置 Token,建议大家用Token来配置 git remote 的源。
after_script:
- cp ./seo/* ./_book/
- cd ./_book
- git init
- git config user.name "awesome-doge"
- git config user.email "oknet821222@gms.tku.edu.tw"
- git add .
- git commit -m "Update GitBook By TravisCI With Build $TRAVIS_BUILD_NUMBER"
- git remote rm origin
- git remote add origin https://${GH_USER}:${GH_PASSWORD}@github.com/cypherpunks-core/bitcoinbook_2nd_zh
- git push --force --quiet origin master:master
# 环境变量
env:
global:
# Github Pages
- GH_REF: github.com/cypherpunks-core/bitcoinbook_2nd_zh