From eb29cad8a7b388911c8d87676c78b98229f30ccf Mon Sep 17 00:00:00 2001 From: Philipp Date: Sat, 28 Mar 2026 20:56:45 +0100 Subject: [PATCH] fix: enable buildah networking in forgejo actions --- .forgejo/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 4ae6953..f4a291c 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Install tooling run: | - apk add --no-cache buildah kubectl + apk add --no-cache buildah kubectl netavark aardvark-dns - name: Checkout env: @@ -53,7 +53,7 @@ jobs: - name: Build and push image 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" - name: Roll deployments to new image