maud/docs/deploy.sh

17 lines
201 B
Bash
Raw Normal View History

2019-03-24 14:39:20 +13:00
#!/bin/sh
set -e
nproc=$(nproc || echo 4)
make clean
make
cd site
git init
git add .
git commit -m 'Deploy'
git remote add github git@github.com:lfairy/maud.git
git push -f github master:gh-pages