зеркало из https://github.com/mozilla/bedrock.git
41 строка
771 B
Bash
Executable File
41 строка
771 B
Bash
Executable File
#!/bin/zsh
|
|
|
|
# A useful build script for projects hosted on github:
|
|
# It can build your Sphinx docs and push them straight to your gh-pages branch.
|
|
|
|
# Should be run from the docs directory: (cd docs && ./build-github.zsh)
|
|
|
|
REPO=$(git config remote.origin.url)
|
|
HERE=$(dirname $0)
|
|
GH=$HERE/_gh-pages
|
|
|
|
|
|
# Checkout the gh-pages branch, if necessary.
|
|
if [[ ! -d $GH ]]; then
|
|
git clone $REPO $GH
|
|
pushd $GH
|
|
git checkout -b gh-pages origin/gh-pages
|
|
popd
|
|
fi
|
|
|
|
# Update and clean out the _gh-pages target dir.
|
|
pushd $GH
|
|
git pull && rm -rf *
|
|
popd
|
|
|
|
# Make a clean build.
|
|
pushd $HERE
|
|
make clean dirhtml
|
|
|
|
# Move the fresh build over.
|
|
cp -r _build/dirhtml/* $GH
|
|
pushd $GH
|
|
|
|
# Commit.
|
|
git add .
|
|
git commit -am "gh-pages build on $(date)"
|
|
git push origin gh-pages
|
|
|
|
popd
|
|
popd
|