hugo-deploy/hugo-deploy.sh

9 lines
150 B
Bash
Raw Permalink Normal View History

2022-03-14 01:20:06 +00:00
#!/bin/sh
USER=remote-user
HOST=remote-host.tld
DIR=/remote/deployment/directory
2023-06-18 04:58:44 +00:00
hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR}
2022-03-14 01:20:06 +00:00
exit 0