initial commit

This commit is contained in:
GNUxeava 2022-03-14 06:50:06 +05:30
commit 9e4925a85d

8
hugo-deploy.sh Normal file
View file

@ -0,0 +1,8 @@
#!/bin/sh
USER=remote-user
HOST=remote-host.tld
DIR=/remote/deployment/directory
hugo && rsync -Pavz -delete public/ ${USER}@${HOST}:${DIR}
exit 0