1
0
mirror of https://github.com/PrivSec-dev/privsec.dev synced 2024-06-28 13:56:21 -04:00

Download hugo instead of compiling

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2023-06-16 05:59:11 -07:00 committed by GitHub
parent 8567512998
commit c26ee81c69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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