bump: blowfish/hugo version
Some checks failed
Build Hugo Docker Image / build docker (push) Failing after 21s
Build Blog Docker Image / build docker (push) Has been cancelled

This commit is contained in:
d3vyce 2024-04-30 23:33:30 +02:00
parent 2f41aadcbf
commit e545f5d3b9
4 changed files with 12 additions and 5 deletions

View File

@ -2,8 +2,7 @@ name: Build Hugo Docker Image
on:
push:
paths:
- "hugo.Dockerfile"
jobs:
build docker:
@ -25,6 +24,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

View File

@ -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

View File

@ -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

View File

@ -1,10 +1,12 @@
FROM golang:1.22-alpine AS build
ARG HUGO_VERSION="v0.125.4"
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
apk add --no-cache gcc musl-dev g++ git && echo ${HUGO_VERSION}
RUN go install -tags extended github.com/gohugoio/hugo@${HUGO_VERSION}