mirror of
https://git.adityakumar.xyz/hugo-deploy.git
synced 2024-11-12 16:09:45 +00:00
8 lines
149 B
Bash
8 lines
149 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
|