wires

summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--\7
-rwxr-xr-xdeploy.sh5
2 files changed, 11 insertions, 1 deletions
diff --git a/\ b/\
new file mode 100644
index 0000000..6872d02
--- /dev/null
+++ b/\
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+rm -rf ./public
+hugo --minify || exit $?
+gzip -rk public || exit $?
+fd . public -tf -E '*.gz' -x brotli -k {} || exit $?
+rsync -rvz --delete ./public/ wires.systems:/var/www/html
diff --git a/deploy.sh b/deploy.sh
index 8ad09b2..14ffd20 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -1,4 +1,7 @@
 #!/bin/sh
 
 rm -rf ./public
-hugo && rsync -rvz --delete ./public/ wires.systems:/var/www/html
+hugo --minify || exit $?
+gzip --best -rk public || exit $?
+fd . public -tf -E '*.gz' -x brotli -k {} || exit $?
+rsync -rvz --delete ./public/ wires.systems:/var/www/html