surtur
f49929e49d
Some checks reported errors
continuous-integration/drone/push Build encountered an error
* attempting to build the site with hugo-extended * replaced old references with relevant paths
12 lines
176 B
Bash
Executable File
12 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
USER=dotyaoverlord
|
|
HOST=dotya.ml
|
|
DIR=public/
|
|
|
|
git submodule init
|
|
git submodule update
|
|
hugo --gc=true && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
|
|
|
|
exit 0
|