cd5f10c99599 — Joe Ulfers 5 years ago
Add script to deploy to Github pages
1 files changed, 12 insertions(+), 0 deletions(-)

A => deploy-site.sh
A => deploy-site.sh +12 -0
@@ 0,0 1,12 @@ 
+make clean
+git clone git@github.com:julfers/revolvingdoorhoax.git _build/html
+rm -rf _build/html/*
+make html
+cp CNAME _build/html/
+cp readme.md _build/html/
+touch _build/html/.nojekyll
+cd _build/html
+git add .
+git commit -m "Automatic site publish"
+git push --all
+cd -