Compare commits

..

3 commits

Author SHA1 Message Date
e8c12cf952
wip
Some checks failed
/ pipeline-info (pull_request) Successful in 1s
/ build (pull_request) Failing after 20s
2025-07-23 21:32:10 +02:00
f8ce07ff9a
use latest node image 2025-07-23 21:30:45 +02:00
6bdf0f92ca
switch to upstream hugo image 2025-07-23 21:26:03 +02:00
2 changed files with 13 additions and 6 deletions

View file

@ -7,7 +7,7 @@ jobs:
cleanup-staging: cleanup-staging:
runs-on: docker runs-on: docker
container: container:
image: code.forgejo.org/oci/node:20-bookworm image: code.forgejo.org/oci/node:22-bookworm
steps: steps:
- name: Pipeline info PR - name: Pipeline info PR
run: | run: |

View file

@ -10,22 +10,29 @@ env:
TZ: Europe/Berlin TZ: Europe/Berlin
jobs: jobs:
build: pipeline-info:
runs-on: docker runs-on: docker
container: container:
image: hugomods/hugo:debian-node-lts-0.148.1 image: code.forgejo.org/oci/node:22-bookworm
steps: steps:
- name: Pipeline info - name: Pipeline info
run: | run: |
echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}" echo "Run triggered by ${{ github.event_name }} (${{ github.event.action }}) on ref ${{ github.ref_name }}"
build:
runs-on: docker
container:
image: ghcr.io/gohugoio/hugo:v0.148.1
steps:
- name: Install packages - name: Install packages
run: | run: |
apt update apk update
# For CI actions.
apk add nodejs-current
# For website build. # For website build.
apt install -y curl jq git apk add tzdata coreutils curl jq git
# For uploading. # For uploading.
apt install -y rsync ssh apk add rsync openssh
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with: