Skip to content

Instantly share code, notes, and snippets.

View pokojt's full-sized avatar

Taylor Pokoj pokojt

View GitHub Profile
@joekarasek
joekarasek / deploy-to-github-pages.sh
Last active August 25, 2016 16:37
Github pages deploy setup for ember
echo "Switch to gh-pages branch"
git checkout gh-pages
git merge master
echo "Clean up"
rm -rf dist
echo "Create new production build"
ember build --environment production