fix: enable buildah networking in forgejo actions

This commit is contained in:
Philipp 2026-03-28 20:56:45 +01:00
parent 2a32461e39
commit eb29cad8a7

View file

@ -19,7 +19,7 @@ jobs:
steps: steps:
- name: Install tooling - name: Install tooling
run: | run: |
apk add --no-cache buildah kubectl apk add --no-cache buildah kubectl netavark aardvark-dns
- name: Checkout - name: Checkout
env: env:
@ -53,7 +53,7 @@ jobs:
- name: Build and push image - name: Build and push image
run: | run: |
buildah bud --storage-driver "$STORAGE_DRIVER" -t "$IMAGE" . buildah bud --storage-driver "$STORAGE_DRIVER" --network host -t "$IMAGE" .
buildah push --storage-driver "$STORAGE_DRIVER" "$IMAGE" "docker://$IMAGE" buildah push --storage-driver "$STORAGE_DRIVER" "$IMAGE" "docker://$IMAGE"
- name: Roll deployments to new image - name: Roll deployments to new image