mirror of
https://git.adityakumar.xyz/hugo-deploy.git
synced 2024-11-09 14:59:45 +00:00
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/sh
|
|
USER=remote-user
|
|
HOST=remote-host.tld
|
|
DIR=/remote/deployment/directory
|
|
|
|
hugo && rsync -Pavz --delete public/ ${USER}@${HOST}:${DIR}
|
|
|
|
exit 0
|