bump: blowfish/hugo version
This commit is contained in:
parent
2f41aadcbf
commit
3b85d5295c
@ -2,8 +2,7 @@ name: Build Hugo Docker Image
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
paths:
|
|
||||||
- "hugo.Dockerfile"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build docker:
|
build docker:
|
||||||
@ -25,6 +24,8 @@ jobs:
|
|||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
build-args:
|
||||||
|
HUGO_VERSION="v0.125.4"
|
||||||
file: ./hugo.Dockerfile
|
file: ./hugo.Dockerfile
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
|
@ -34,6 +34,8 @@ jobs:
|
|||||||
uses: docker/build-push-action@v4
|
uses: docker/build-push-action@v4
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
|
build-args:
|
||||||
|
BLOWFISH_VERSION="v2.66.0"
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
|
@ -5,7 +5,7 @@ WORKDIR /opt/blog
|
|||||||
COPY . /opt/blog/
|
COPY . /opt/blog/
|
||||||
|
|
||||||
RUN git submodule update --init --recursive && \
|
RUN git submodule update --init --recursive && \
|
||||||
git -C themes/blowfish/ checkout v2.65.0
|
git -C themes/blowfish/ checkout ${BLOWFISH_VERSION}
|
||||||
RUN hugo
|
RUN hugo
|
||||||
|
|
||||||
# Publish Stage
|
# Publish Stage
|
||||||
|
@ -7,4 +7,4 @@ ENV GO111MODULE=on
|
|||||||
|
|
||||||
RUN apk update && \
|
RUN apk update && \
|
||||||
apk add --no-cache gcc musl-dev g++ git
|
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}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user