mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
442 B
25 lines
442 B
#!/usr/bin/env sh
|
|
|
|
# 确保脚本抛出遇到的错误
|
|
set -e
|
|
|
|
# 生成静态文件
|
|
npm run build
|
|
|
|
# 进入生成的文件夹
|
|
cd build/
|
|
|
|
echo 'hippo4j.cn' > CNAME
|
|
|
|
git init
|
|
git add -A
|
|
git commit -m "auto commit"
|
|
|
|
# github
|
|
git branch -m master main
|
|
GIT_SSH_COMMAND="ssh -i ~/.ssh/hippo4j" git remote add origin git@github.com:hippo4j/hippo4j.github.io.git
|
|
GIT_SSH_COMMAND="ssh -i ~/.ssh/hippo4j" git push -u origin main -f
|
|
|
|
cd -
|
|
rm -rf build/
|