From 955feae2af607f792d1b10589ae52f46d0b4ccfd Mon Sep 17 00:00:00 2001 From: lubiana Date: Thu, 12 Dec 2024 20:31:50 +0100 Subject: [PATCH] test --- actions/hugo/entrypoint.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/actions/hugo/entrypoint.sh b/actions/hugo/entrypoint.sh index 3ca35d6..9837cd4 100644 --- a/actions/hugo/entrypoint.sh +++ b/actions/hugo/entrypoint.sh @@ -1,6 +1,6 @@ #!/bin/sh -l -sh -c "hugo" -sh -c "find ./public -type f -regex '.*\.\(css\|html\|js\|json\|svg\|xml\)$' -exec brotli --best -f {} \+ -exec gzip --best -k -f {} \+" - -exit 0 +hugo +find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \ + -exec brotli --best -f {} \+ \ + -exec gzip --best -k -f {} \+