diff --git a/cloudflare-build.sh b/cloudflare-build.sh index 550344d..c4e3742 100644 --- a/cloudflare-build.sh +++ b/cloudflare-build.sh @@ -1,13 +1,12 @@ #!/bin/bash -export GOPROXY=direct -export GOSUMD=off -export CGO_ENABLED=1 +curl -L -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep "browser_download_url.*extended.*linux-amd64.tar.gz" | cut -d : -f 2,3 | sed 's/"//g' | xargs wget -go install -tags extended github.com/gohugoio/hugo@latest +tar xvf *.tar.gz +chmod u+x ./hugo if [ "$CF_PAGES_BRANCH" == "main" ]; then - hugo --minify + ./hugo --minify else - hugo -b $CF_PAGES_URL --minify + ./hugo -b $CF_PAGES_URL --minify fi