Just deploy the _site directory to gh-pages

This commit is contained in:
Aanand Prasad 2014-01-27 12:26:33 +00:00
parent f60621ee1b
commit db396b81ef
1 changed files with 2 additions and 5 deletions

View File

@ -2,7 +2,7 @@
set -ex
pushd docs
pushd docs/_site
export GIT_DIR=.git-gh-pages
export GIT_WORK_TREE=.
@ -15,8 +15,7 @@ if !(git remote | grep origin); then
git remote add origin git@github.com:orchardup/fig.git
fi
cp .gitignore-gh-pages .gitignore
echo ".git-gh-pages" >> .gitignore
echo ".git-gh-pages" > .gitignore
git add -u
git add .
@ -24,6 +23,4 @@ git add .
git commit -m "update" || echo "didn't commit"
git push -f origin master:gh-pages
rm .gitignore
popd