From 4e3e17ced480d8cd6b4c75e0fcea63466c1d82c4 Mon Sep 17 00:00:00 2001 From: Le Serjant Date: Mon, 16 Mar 2026 11:31:54 +0000 Subject: [PATCH] Use v2 TOML format for registries.conf Match the format already used on the runner host. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 87c2180..931b33b 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -22,7 +22,7 @@ jobs: - name: Build and push container image run: | mkdir -p /etc/containers - printf '[registries.insecure]\nregistries = ["git.kimchi"]\n' > /etc/containers/registries.conf + printf '[[registry]]\nlocation = "git.kimchi"\ninsecure = true\n' > /etc/containers/registries.conf IMAGE_TAG="${{ env.IMAGE }}:sha-${GITHUB_SHA::8}" IMAGE_LATEST="${{ env.IMAGE }}:latest"