lubitest/actions/hugo-four/entrypoint.sh

10 lines
178 B
Bash
Raw Permalink Normal View History

2024-12-15 16:27:59 +00:00
#!/bin/sh
hugo
find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \
-exec brotli --best -f {} \+ \
-exec gzip --best -k -f {} \+
2024-12-15 16:29:07 +00:00
sync
2024-12-15 16:27:59 +00:00
sleep 3
exit 0