diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..748bd28 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,15 @@ +#! /usr/bin/env bash + +zola build +cd public +git init . +git checkout -B gh-pages +touch .nojekyll +echo "otmp.4rs.nl" > CNAME + +git add . +git commit -m "Deploy to GitHub Pages" +git remote add origin https://github.com/TheAwiteb/otmp_site.git +git push origin gh-pages -f +cd .. +rm -fr public