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 -