compose/script/deploy-docs

30 lines
428 B
Plaintext
Raw Normal View History

#!/bin/bash
set -ex
pushd docs/_site
export GIT_DIR=.git-gh-pages
export GIT_WORK_TREE=.
if [ ! -d "$GIT_DIR" ]; then
git init
fi
if !(git remote | grep origin); then
git remote add origin git@github.com:orchardup/fig.git
fi
2014-01-27 22:43:37 +01:00
git fetch origin
git reset --soft origin/gh-pages
echo ".git-gh-pages" > .gitignore
git add -u
git add .
git commit -m "update" || echo "didn't commit"
2014-01-27 22:43:37 +01:00
git push origin master:gh-pages
popd