2025-03-11 20:38:45 -06:00
|
|
|
#!/bin/sh
|
2025-03-29 15:04:43 -06:00
|
|
|
USER=forgejo
|
|
|
|
HOST=test1.melm.xyz
|
|
|
|
DIR=/srv/ # the directory where your website files should go
|
2025-03-11 20:38:45 -06:00
|
|
|
|
|
|
|
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
|