From c26ee81c69315a347525eec3f3bed402060c2414 Mon Sep 17 00:00:00 2001 From: Tommy Date: Fri, 16 Jun 2023 05:59:11 -0700 Subject: [PATCH] Download hugo instead of compiling Signed-off-by: Tommy --- cloudflare-build.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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