Update deploy.sh

This commit is contained in:
Aaran Xu 2022-02-13 04:10:20 +08:00
parent b096b7dff2
commit 9fb27e0051

View File

@ -19,3 +19,20 @@ touch .
git add -A .
git commit -m "rebuild pages at ${rev}"
git push -q upstream HEAD:gh-pages > /dev/null 2>&1
cd ../english/book
git init
git config user.name "Aaran Xu"
git config user.email "aaranxu@outlook.com"
git remote add upstream "git@github.com:rust-lang-cn/book-cn.git"
git fetch upstream
git reset upstream/gh-pages-en
touch .
git add -A .
git commit -m "rebuild English pages at ${rev}"
git push -q upstream HEAD:gh-pages-en > /dev/null 2>&1