From e12e095a8254ef1dce12e434ffcec7e346580916 Mon Sep 17 00:00:00 2001 From: Barry Walker Date: Tue, 13 Jan 2026 16:18:12 -0500 Subject: [PATCH] fix: use single-line kaniko command with proper quoting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Multiline backslash continuation may have shell expansion issues. Using single line with quoted arguments instead. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .woodpecker/release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.woodpecker/release.yml b/.woodpecker/release.yml index c5f5eac..5daa14f 100644 --- a/.woodpecker/release.yml +++ b/.woodpecker/release.yml @@ -86,12 +86,7 @@ steps: echo "Building Docker image version: $VERSION" mkdir -p /kaniko/.docker echo "{\"auths\":{\"ghcr.io\":{\"username\":\"$GHCR_USERNAME\",\"password\":\"$GHCR_TOKEN\"}}}" > /kaniko/.docker/config.json - /kaniko/executor \ - --context=$CI_WORKSPACE/PaperlessMCP \ - --dockerfile=$CI_WORKSPACE/PaperlessMCP/Dockerfile \ - --destination=ghcr.io/barryw/paperlessmcp:v${VERSION} \ - --destination=ghcr.io/barryw/paperlessmcp:latest \ - --build-arg=VERSION=${VERSION} + /kaniko/executor --context="$CI_WORKSPACE/PaperlessMCP" --dockerfile="$CI_WORKSPACE/PaperlessMCP/Dockerfile" --destination="ghcr.io/barryw/paperlessmcp:v$VERSION" --destination="ghcr.io/barryw/paperlessmcp:latest" --build-arg="VERSION=$VERSION" depends_on: [version] # Create git tag and push