added deploy script

This commit is contained in:
Xavi 2023-02-19 22:43:51 -08:00
parent 305f58dd8b
commit f6e54f87f6

8
xavishobbies/deploy Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
USER=
HOST=
DIR=
hugo && rsync -avz --delete public/ ${USER}@${HOST}:${DIR}
exit 0