1
0
mirror of https://github.com/tommytran732/tommytran.io synced 2024-07-26 23:32:07 -04:00
tommytran.io/cloudflare-build.sh
Tommy 8b6c0c1f15
Add set -eu
Signed-off-by: Tommy <contact@tommytran.io>
2024-07-20 18:25:17 -07:00

17 lines
431 B
Bash

#!/bin/bash
set -eu
#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
wget https://github.com/gohugoio/hugo/releases/download/v0.119.0/hugo_0.119.0_Linux-64bit.tar.gz
tar xvf ./*.tar.gz
chmod u+x ./hugo
if [ "$CF_PAGES_BRANCH" == "main" ]; then
./hugo --minify
else
./hugo -b "$CF_PAGES_URL"
fi