summaryrefslogtreecommitdiff
path: root/deploy
blob: face70a488ef83af6c80891b40491456b1da10dd (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

user="root"
host="rabiega.xyz"
dir="/var/www/mysite/"

cd "$HOME"/website/ && hugo && rsync -avz --delete "$HOME"/website/public/ ${user}@${host}:${dir} && cd - || exit

exit 0