lubitest/actions/sleep/entrypoint.sh

9 lines
169 B
Bash
Raw Normal View History

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