From 0bdae453fc67090e55b58853d5ff0a45db221958 Mon Sep 17 00:00:00 2001 From: mcp-bot Date: Fri, 10 Jul 2026 18:14:42 +0000 Subject: [PATCH] ci(iios): rm -rf /tmp/kp before clone (persistent runner leaves stale dir) The dind-builder runner is host-mode/persistent, so /tmp/kp from a prior run survives and 'git clone ... /tmp/kp' fails with 'destination path already exists and is not an empty directory'. Clear it first. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/deploy-iios-service.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/deploy-iios-service.yml b/.github/workflows/deploy-iios-service.yml index 080eecb..f49b329 100644 --- a/.github/workflows/deploy-iios-service.yml +++ b/.github/workflows/deploy-iios-service.yml @@ -42,6 +42,7 @@ jobs: - name: Bump k8s-pods image tag (ArgoCD deploys) run: | + rm -rf /tmp/kp # dind-builder is a persistent host: clear any stale checkout from a prior run git clone --depth 1 -b main \ "https://mcp-bot:${{ secrets.K8S_PODS_TOKEN }}@git.lynkedup.cloud/platform-engineering/k8s-pods.git" /tmp/kp cd /tmp/kp