-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeploy.sh
44 lines (36 loc) · 1.33 KB
/
deploy.sh
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
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
echo "module.exports={clientID: '${clientID}',clientSecret: '${clientSecret}'}" > docs/.vuepress/config/secret.js
# 生成静态文件
npm run build
# 进入生成的文件夹
cd docs/.vuepress/dist
# deploy to github
echo 'taixingyiji.com' > CNAME
if [ -z "$GITHUB_TOKEN" ]; then
msg='deploy'
githubUrl=git@github.com:taixingyiji/blog.git
else
msg='来自github actions的自动部署'
githubUrl=https://taixingyiji:${GITHUB_TOKEN}@github.com/taixingyiji/blog.git
git config --global user.name "taixingyiji"
git config --global user.email "taixingyiji@126.com"
fi
git init
git add -A
git commit -m "${msg}"
git push -f $githubUrl master:gh-pages # 推送到github
# deploy to coding
#echo 'www.taixingyiji.com\taixingyiji.com' > CNAME # 自定义域名
#echo 'google.com, pub-7828333725993554, DIRECT, f08c47fec0942fa0' > ads.txt # 谷歌广告相关文件
#if [ -z "$CODING_TOKEN" ]; then # -z 字符串 长度为0则为true;$CODING_TOKEN来自于github仓库`Settings/Secrets`设置的私密环境变量
# codingUrl=git@e.coding.net:xgy/xgy.git
#else
# codingUrl=https://HmuzsGrGQX:${CODING_TOKEN}@e.coding.net/xgy/xgy.git
#fi
#git add -A
#git commit -m "${msg}"
#git push -f $codingUrl master # 推送到coding
cd - # 退回开始所在目录
rm -rf docs/.vuepress/dist