diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-24 02:18:20 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-26 02:21:41 +0800 |
commit | 0c885ba1bf30ce8308880f926be85b6f5a499fa6 (patch) | |
tree | 25f42a9386f760c9d7d47d9b154e4a0089e49dff /services/docker/nginx/install-hugo.bash | |
parent | dc7b27c713351066e20947ea6d1adb80aeb68d9f (diff) | |
download | crupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.tar.gz crupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.tar.bz2 crupest-0c885ba1bf30ce8308880f926be85b6f5a499fa6.zip |
feat(www): YEAH!
Diffstat (limited to 'services/docker/nginx/install-hugo.bash')
-rw-r--r-- | services/docker/nginx/install-hugo.bash | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/services/docker/nginx/install-hugo.bash b/services/docker/nginx/install-hugo.bash new file mode 100644 index 0000000..dcf6800 --- /dev/null +++ b/services/docker/nginx/install-hugo.bash @@ -0,0 +1,15 @@ +#! /usr/bin/env bash + +set -e + +apt-get update +apt-get install -y locales curl +localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 + +VERSION=$(curl -s https://api.github.com/repos/gohugoio/hugo/releases/latest | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') +echo "The latest version of hugo is $VERSION." +url="https://github.com/gohugoio/hugo/releases/download/v${VERSION}/hugo_extended_${VERSION}_linux-amd64.deb" +curl -fOL "$url" +dpkg -i "hugo_extended_${VERSION}_linux-amd64.deb" +rm "hugo_extended_${VERSION}_linux-amd64.deb" +hugo version |