From c3193e0adb04fa2b9ede20b434be5052a94d7da1 Mon Sep 17 00:00:00 2001 From: d3vyce Date: Tue, 30 Apr 2024 23:33:30 +0200 Subject: [PATCH] bump: blowfish/hugo version --- .gitea/workflows/1_build_hugo_image.yml | 4 +++- .gitea/workflows/2_build_blog_image.yml | 2 ++ Dockerfile | 4 +++- hugo.Dockerfile | 4 +++- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/1_build_hugo_image.yml b/.gitea/workflows/1_build_hugo_image.yml index fb50a60..c611f48 100644 --- a/.gitea/workflows/1_build_hugo_image.yml +++ b/.gitea/workflows/1_build_hugo_image.yml @@ -3,7 +3,7 @@ name: Build Hugo Docker Image on: push: paths: - - "hugo.Dockerfile" + - ".gitea/workflows/1_build_hugo_image.yml" jobs: build docker: @@ -25,6 +25,8 @@ jobs: uses: docker/build-push-action@v4 with: context: . + build-args: + HUGO_VERSION=v0.125.4 file: ./hugo.Dockerfile platforms: linux/amd64 push: true diff --git a/.gitea/workflows/2_build_blog_image.yml b/.gitea/workflows/2_build_blog_image.yml index b50c4fe..4f88018 100644 --- a/.gitea/workflows/2_build_blog_image.yml +++ b/.gitea/workflows/2_build_blog_image.yml @@ -34,6 +34,8 @@ jobs: uses: docker/build-push-action@v4 with: context: . + build-args: + BLOWFISH_VERSION=v2.66.0 file: ./Dockerfile platforms: linux/amd64 push: true diff --git a/Dockerfile b/Dockerfile index 8e663a9..92bf87e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,13 @@ # Build Stage FROM git.d3vyce.fr/d3vyce/hugo:latest AS build +ARG BLOWFISH_VERSION + WORKDIR /opt/blog COPY . /opt/blog/ RUN git submodule update --init --recursive && \ - git -C themes/blowfish/ checkout v2.65.0 + git -C themes/blowfish/ checkout ${BLOWFISH_VERSION} RUN hugo # Publish Stage diff --git a/hugo.Dockerfile b/hugo.Dockerfile index 6692e01..a0257aa 100644 --- a/hugo.Dockerfile +++ b/hugo.Dockerfile @@ -1,10 +1,12 @@ FROM golang:1.22-alpine AS build +ARG HUGO_VERSION ARG CGO=1 + ENV CGO_ENABLED=${CGO} ENV GOOS=linux ENV GO111MODULE=on RUN apk update && \ apk add --no-cache gcc musl-dev g++ git -RUN go install -tags extended github.com/gohugoio/hugo@v0.124.1 +RUN go install -tags extended github.com/gohugoio/hugo@${HUGO_VERSION}