1
0
mirror of https://github.com/PrivSec-dev/privsec.dev synced 2024-07-02 15:56:25 -04:00
privsec.dev/cloudflare-build.sh

14 lines
233 B
Bash
Raw Normal View History

#!/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