mirror of
https://github.com/PrivSec-dev/privsec.dev.git
synced 2024-10-01 01:35:53 -04:00
8567512998
Signed-off-by: Tommy <contact@tommytran.io>
14 lines
233 B
Bash
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
|