homepage/deploy

12 lines
176 B
Plaintext
Raw Normal View History

2019-10-19 11:41:54 +02:00
#!/bin/sh
2019-10-20 12:20:48 +02:00
USER=dotyaoverlord
HOST=dotya.ml
DIR=public/
2019-10-19 11:41:54 +02:00
git subvolume init
git subvolume update
hugo --gc=true && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
2019-10-19 11:41:54 +02:00
exit 0