lubitest/actions/sleep-three/entrypoint.sh
lubiana 29d98d86a0
Some checks failed
/ debug (push) Failing after 41s
test
2024-12-14 19:04:35 +01:00

16 lines
237 B
Bash

#!/bin/sh
apk add --no-cache \
brotli \
gzip \
hugo
echo 'hello'
hugo
find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \
-exec brotli --best -f {} \+ \
-exec gzip --best -k -f {} \+
exit 0