From 75315ed91e75cfe9549abbf3f346c51dd6f964f3 Mon Sep 17 00:00:00 2001 From: Kelly Date: Tue, 9 Dec 2025 13:56:37 -0700 Subject: [PATCH] fix(ci): Use comma-separated build_args for docker-buildx plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The docker-buildx plugin expects build_args as a comma-separated string, not a YAML list. This should fix the build_sha/build_time being null. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .woodpecker/.ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.woodpecker/.ci.yml b/.woodpecker/.ci.yml index c48061a7..f45e8756 100644 --- a/.woodpecker/.ci.yml +++ b/.woodpecker/.ci.yml @@ -64,11 +64,7 @@ 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} depends_on: [] when: branch: master