2020-07-28 21:27:40 +03:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Deploy the content of _site to 'origin/<pages_branch>'
|
|
|
|
#
|
|
|
|
# v2.5
|
|
|
|
# https://github.com/cotes2020/jekyll-theme-chirpy
|
|
|
|
# © 2020 Cotes Chung
|
|
|
|
# Published under MIT License
|
|
|
|
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
PAGES_BRANCH="gh-pages"
|
|
|
|
|
|
|
|
_no_branch=false
|
|
|
|
|
2020-08-19 12:05:58 +03:00
|
|
|
if [[ -z $(git branch -av | grep "$PAGES_BRANCH") ]]; then
|
2020-07-28 21:27:40 +03:00
|
|
|
_no_branch=true
|
2020-08-19 12:05:58 +03:00
|
|
|
git checkout -b "$PAGES_BRANCH"
|
2020-07-28 21:27:40 +03:00
|
|
|
else
|
2020-08-19 12:05:58 +03:00
|
|
|
git checkout "$PAGES_BRANCH"
|
2020-07-28 21:27:40 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
mv _site ../
|
|
|
|
mv .git ../
|
|
|
|
|
2020-08-19 12:05:58 +03:00
|
|
|
rm -rf ./*
|
|
|
|
rm -rf .[^.] .??*
|
2020-07-28 21:27:40 +03:00
|
|
|
|
|
|
|
mv ../_site/* .
|
|
|
|
mv ../.git .
|
|
|
|
|
|
|
|
git config --global user.name "GitHub Actions"
|
|
|
|
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
|
|
|
|
|
|
|
|
git update-ref -d HEAD
|
|
|
|
git add -A
|
|
|
|
git commit -m "[Automation] Site update No.${GITHUB_RUN_NUMBER}"
|
|
|
|
|
|
|
|
if [[ $_no_branch = true ]]; then
|
|
|
|
git push -u origin $PAGES_BRANCH
|
|
|
|
else
|
|
|
|
git push -f
|
|
|
|
fi
|