release tag
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-01-14 17:45:13 +01:00
parent 7ddd0466cc
commit 2871751bdd
5 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ ARG RELEASETAG "unset"
# --chown is required since kaniko in woodpecker otherwise copies as root and
# the hugo command below fails since it is executed as hugo
COPY --chown=hugo:hugo content/ /src
RUN sed -i 's/%RELEASETAG%/'${RELEASETAG}'/' /src/content/about.md
RUN sed -i 's/%RELEASETAG%/'${RELEASETAG}'/' /src/layouts/partials/releasetag.html
RUN if [ "$BASE_URL" = ""]; then hugo; else hugo -b $BASE_URL; fi
# server

View File

@ -1,7 +1,6 @@
---
title: "About"
---
## About
@ -9,4 +8,3 @@ title: "About"
`ReleaseTag = %RELEASETAG%`

View File

@ -1,4 +1,5 @@
baseURL: "https://minimal-setups.de"
releaseTag: "%RELEASETAG%"
languageCode: "en-us"
title: "Minimal Setups"
theme: "ananke"

View File

@ -0,0 +1 @@
<pre>%RELEASETAG%</pre>