From 424e4675aee56d1834fa9f4e44f624ee1db77c01 Mon Sep 17 00:00:00 2001 From: Kpa-clawbot <259247574+Kpa-clawbot@users.noreply.github.com> Date: Sun, 29 Mar 2026 12:42:31 -0700 Subject: [PATCH] ci: restrict staging deploy container cleanup Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index f0a71dcd..81f40df9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -261,10 +261,10 @@ jobs: - name: Stop old containers run: | # Kill legacy container names from pre-rename era - docker rm -f meshcore-analyzer meshcore-prod meshcore-staging meshcore-staging-go 2>/dev/null || true + docker rm -f meshcore-staging meshcore-staging-go 2>/dev/null || true # Kill current container names docker compose --profile staging-go stop staging-go 2>/dev/null || true - docker rm -f corescope-staging-go corescope-prod corescope-staging 2>/dev/null || true + docker rm -f corescope-staging-go corescope-staging 2>/dev/null || true fuser -k 82/tcp 2>/dev/null || true sleep 2