-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.sh
42 lines (23 loc) · 887 Bytes
/
publish.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
if [ ! -d "./publish/" ]; then
echo "========= Publish folder does't exist, clone from remote now =========="
git clone [email protected]:jameingh/jameingh.github.io.git publish
echo "========= Clone publish files complete =========="
else
echo " Publish folder already exists"
fi
echo "========= Hexo generate =========="
## && 只有左边的执行成功才能执行右边的
hexo clean && hexo g && \cp -rf public/ publish/
# rm -rf publish/*
echo "========= Hexo generate complete ========="
cd publish
echo "========= Git commit start ========="
# git init
git pull
git add .
git commit -m 'add files'
echo "========= Git commit compelete ========="
# git remote add origin [email protected]:jameingh/jameingh.github.io.git
echo "========= Git push start ========="
git push -u origin main
echo "========= Git push compelete ========="