lubitest/actions/hugo-three/entrypoint.sh

9 lines
173 B
Bash
Raw 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 {} \+
sleep 3
exit 0