From 9c6dd3731611e9cac5cc899432286b3cf8a00b98 Mon Sep 17 00:00:00 2001 From: Kelly Date: Tue, 9 Dec 2025 18:03:35 -0700 Subject: [PATCH] fix(ci): Use YAML list format for docker-buildx build_args MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The woodpecker docker-buildx plugin requires build_args as a YAML list, not a comma-separated string. This fixes the build version/hash not being passed to the Docker image. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .woodpecker/.ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.woodpecker/.ci.yml b/.woodpecker/.ci.yml index f45e8756..1d23337a 100644 --- a/.woodpecker/.ci.yml +++ b/.woodpecker/.ci.yml @@ -64,7 +64,11 @@ steps: from_secret: registry_password platforms: linux/amd64 provenance: false - build_args: APP_BUILD_VERSION=${CI_COMMIT_SHA},APP_GIT_SHA=${CI_COMMIT_SHA},APP_BUILD_TIME=${CI_PIPELINE_CREATED},CONTAINER_IMAGE_TAG=${CI_COMMIT_SHA} + build_args: + - APP_BUILD_VERSION=${CI_COMMIT_SHA} + - APP_GIT_SHA=${CI_COMMIT_SHA} + - APP_BUILD_TIME=${CI_PIPELINE_CREATED} + - CONTAINER_IMAGE_TAG=${CI_COMMIT_SHA:0:8} depends_on: [] when: branch: master