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 c26ee81c69
Download hugo instead of compiling
Signed-off-by: Tommy <contact@tommytran.io>
2023-06-16 05:59:11 -07:00

13 lines
328 B
Bash

#!/bin/bash
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
tar xvf *.tar.gz
chmod u+x ./hugo
if [ "$CF_PAGES_BRANCH" == "main" ]; then
./hugo --minify
else
./hugo -b $CF_PAGES_URL --minify
fi