Compare commits

..

1 commit

Author SHA1 Message Date
c777d22169
switch to hugomods hugo image
Some checks failed
/ build (pull_request) Failing after 1s
As the current image is out-of-date, the GitLab documentation also uses
a hugomods image and as we're already using one in other repos, switch
to it.

Match the hugo version currently in use for now as the latest version
doesn't build the website.

https://docs.gitlab.com/tutorials/hugo/#add-your-gitlab-configuration-options
https://docker.hugomods.com/
https://github.com/hugomods/docker
https://hub.docker.com/r/hugomods/hugo
2025-07-23 22:26:52 +02:00

View file

@ -13,7 +13,7 @@ jobs:
build:
runs-on: docker
container:
image: hugomods/hugo:debian-node-lts-0.148.1
image: hugomods/hugo:debian-node-lts-0.140.2
steps:
- name: Pipeline info
run: |
@ -21,11 +21,13 @@ jobs:
- name: Install packages
run: |
apt update
apk update
# For CI actions.
apk add nodejs-current
# For website build.
apt install -y curl jq git
apk add tzdata coreutils curl jq git
# For uploading.
apt install -y rsync ssh
apk add rsync openssh
- uses: actions/checkout@v4
with: