From 490c7e7313122cd1895fc8d44e1d44fc994bd133 Mon Sep 17 00:00:00 2001 From: paspo Date: Mon, 29 Sep 2025 21:03:21 +0200 Subject: [PATCH] hugo auto upgrade --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9503b8a..ad721ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN \ apk --no-cache upgrade && \ apk --no-cache add curl jq && \ LATEST_RELEASE=$(curl -L -s -H 'Accept: application/json' https://github.com/gohugoio/hugo/releases/latest | jq --raw-output ".tag_name" | sed 's/^v//' ) && \ - LATEST_RELEASE=0.139.4 && \ + echo "Using hugo release: ${LATEST_RELEASE}" && \ URL="https://github.com/gohugoio/hugo/releases/download/v${LATEST_RELEASE}/hugo_extended_${LATEST_RELEASE}_linux-${HUGO_ARCH}.tar.gz " && \ echo "Downloading: ${URL}" && \ wget "${URL}" -O - | tar xzv -C /tmp