From 2168b38a7f151a92ca8bb3db03aaadea3e4495ff Mon Sep 17 00:00:00 2001 From: Jonathon Leight Date: Mon, 22 Jun 2026 11:38:05 -0400 Subject: [PATCH] Skip clone in deploy pipeline --- .woodpecker/deploy.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.woodpecker/deploy.yaml b/.woodpecker/deploy.yaml index cd79a2a..c70d67f 100644 --- a/.woodpecker/deploy.yaml +++ b/.woodpecker/deploy.yaml @@ -8,6 +8,10 @@ when: depends_on: - build +# This workflow only runs kubectl against the commit SHA (provided as an env +# var) — it never reads the repo, so skip the automatic clone step. +skip_clone: true + steps: deploy: image: alpine/kubectl:1.35.3