forked from lit-lug/homepage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.sh
56 lines (44 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env sh
# 确保脚本抛出遇到的错误
set -e
# 生成静态文件
npm run build
# 进入生成的文件夹
cd docs/.vuepress/dist
# deploy to github pages
# echo 'icpove.me' > CNAME
if [ -z "$GITHUB_TOKEN" ]; then
msg='deploy'
[email protected]:lit-lug/homepage.git
else
msg='来自github actions的自动部署'
githubUrl=https://lit-lug:${GITHUB_TOKEN}@github.com/lit-lug/homepage.git
git config --global user.name "gaoajia"
git config --global user.email "[email protected]"
fi
git init
git add -A
git commit -m "${msg}"
git push -f $githubUrl master:gh-pages # 推送到github gh-pages分支
# deploy to coding pages
echo 'www.litunix.org' > CNAME # 自定义域名
if [ -z "$CODING_TOKEN" ]; then # -z 字符串 长度为0则为true;$CODING_TOKEN来自于github仓库`Settings/Secrets`设置的私密环境变量
[email protected]:litlug/homepage/homepage.git
else
codingUrl=https://kZABGpwdbp:${CODING_TOKEN}@e.coding.net/litlug/homepage/homepage.git
fi
git add -A
git commit -m "${msg}"
git push -f $codingUrl master # 推送到coding
# deploy to coding pages
echo 'iluoli.ren' > CNAME # 自定义域名
if [ -z "$CODING_TOKEN" ]; then # -z 字符串 长度为0则为true;$CODING_TOKEN来自于github仓库`Settings/Secrets`设置的私密环境变量
[email protected]:litlug/homepage/homepage-cn.git
else
codingUrl=https://kZABGpwdbp:${CODING_TOKEN}@e.coding.net/litlug/homepage/homepage-cn.git
fi
git add -A
git commit -m "${msg}"
git push -f $codingUrl master # 推送到coding
cd -
rm -rf docs/.vuepress/dist