diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..b2adc3d --- /dev/null +++ b/deploy.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +source=public/ +target=apps@spock.ariejan.net:/home/apps/sites/ariejan.net + +if [ -d ./public ] ; then + echo "-- Pruning current static files from ./${source}" + rm -rf ./${source} +fi + +echo "-- Generating website to ./${source}" +hugo + +echo "-- Uploading using rsync to ${target}" +rsync -aqz --delete-after --no-progress ${source} -e ssh ${target}