From f71d140af3dde8c481c4cb46ede5810315e5f09a Mon Sep 17 00:00:00 2001 From: tas Date: Sun, 15 Mar 2026 17:15:49 +0000 Subject: [PATCH] Install buildah in deploy workflow --- .gitea/workflows/deploy.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 5978f01..dd3dacf 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -14,6 +14,13 @@ jobs: deploy: runs-on: ubuntu-latest steps: + + - name: Install buildah + run: | + apt-get update && apt-get install -y buildah + mkdir -p /etc/containers + printf '[[registry]]\nlocation = "git.kimchi"\ninsecure = true\n' > /etc/containers/registries.conf + - name: Checkout uses: actions/checkout@v4