lubitest/actions/sleep/entrypoint.sh
lubiana a0891faf8b
All checks were successful
/ debug (push) Successful in 35s
test
2024-12-13 13:07:55 +01:00

8 lines
169 B
Bash

#!/bin/sh
find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \
-exec brotli --best -f {} \+ \
-exec gzip --best -k -f {} \+
sleep 3
exit 0