1
0
mirror of https://github.com/PrivSec-dev/privsec.dev synced 2024-06-30 14:56:18 -04:00
privsec.dev/cloudflare-build.sh
Tommy 8567512998
Use the latest Hugo version
Signed-off-by: Tommy <contact@tommytran.io>
2023-06-16 05:19:15 -07:00

14 lines
233 B
Bash

#!/bin/bash
export GOPROXY=direct
export GOSUMD=off
export CGO_ENABLED=1
go install -tags extended github.com/gohugoio/hugo@latest
if [ "$CF_PAGES_BRANCH" == "main" ]; then
hugo --minify
else
hugo -b $CF_PAGES_URL --minify
fi