homepage/deploy
surtur 4fc713392b
All checks were successful
continuous-integration/drone/push Build is passing
feat: only download hugo when there's a newer version
2020-05-31 03:31:13 +02:00

23 lines
405 B
Bash
Executable File

#!/bin/bash
USR=dotyaoverlord
HOST=dotya.ml
DIR=public/
export HUGO_VERSION=$1
if [ $(hugo version | grep -q ${HUGO_VERSION}) -eq 1 ]; then
~/bin/gethugo $HUGO_VERSION
fi
git submodule init
git submodule update
~/bin/hugo version
~/bin/hugo --gc=true --minify
if [ $USER = $USR ]; then
rsync -av --delete public/ ~/${DIR}
else
rsync -avz --delete public/ ${USR}@${HOST}:~/${DIR}
fi
exit 0