diff --git a/actions/hugo/Dockerfile b/actions/hugo/Dockerfile index f857370..fa102c9 100644 --- a/actions/hugo/Dockerfile +++ b/actions/hugo/Dockerfile @@ -8,5 +8,5 @@ RUN apk add --no-cache \ COPY entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh -ENTRYPOINT ["/entrypoint.sh"] +CMD ["/entrypoint.sh"] diff --git a/actions/hugo/entrypoint.sh b/actions/hugo/entrypoint.sh index 9837cd4..d7868de 100644 --- a/actions/hugo/entrypoint.sh +++ b/actions/hugo/entrypoint.sh @@ -1,4 +1,4 @@ -#!/bin/sh -l +#!/bin/sh hugo find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \