添加 gh-pages 更新脚本

This commit is contained in:
liaoxuezhi 2019-06-05 10:45:36 +08:00
parent 0ff96c1bb4
commit ce1d2bfa59
1 changed files with 31 additions and 0 deletions

31
deploy-gh-pages.sh Executable file
View File

@ -0,0 +1,31 @@
#!/bin/bash
set -e
if [ -z "$(git status --porcelain)" ]; then
# Working directory clean
echo "Working directory clean"
else
# Uncommitted changes
echo "Skiped: You got uncommitted changes"
exit
fi
rm -rf gh-pages
fis3 release gh-pages -c
node ./build/uplaod2cdn.js $2
git add gh-pages -f
git commit -m "更新 gh-pages"
git push
git subtree push --prefix gh-pages origin gh-pages
git commit -m 'rebuild pages' --allow-empty
git push origin
echo "done"