Homepage/deploy_devon.sh
themelm eaeabf3bbf
Some checks failed
Auto Pull / deploy (push) Failing after 4s
workflowfix13
2025-03-29 16:02:36 -06:00

8 lines
260 B
Bash
Executable file

#!/bin/sh
USER=devon
HOST=192.168.1.145
DIR=/var/www/ # the directory where your website files should go
hugo && rsync -avz --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public directory
exit 0