actions-hugo/entrypoint.sh

11 lines
217 B
Bash
Raw Normal View History

2024-12-12 00:24:04 +00:00
#!/bin/sh -l
2024-12-12 00:02:06 +00:00
hugo
find ./public -type f \
-regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \
-exec brotli --best -f {} \+ \
-exec gzip --best -k -f {} \+
2024-12-12 00:24:04 +00:00
echo "success=success" >> $GITHUB_OUTPUT
return 0