From 78e0347055253fb53354aebe79874bcf57cbed53 Mon Sep 17 00:00:00 2001 From: you Date: Sun, 29 Mar 2026 18:46:33 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20fix=20staging=20deploy=20=E2=80=94=20only?= =?UTF-8?q?=20stop=20staging=20container,=20don't=20nuke=20prod?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c919530b..5fdf8fdb 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -254,12 +254,11 @@ jobs: - name: Checkout code uses: actions/checkout@v5 - - name: Stop old staging containers + - name: Stop old staging container run: | - docker compose --profile staging-go down --remove-orphans 2>/dev/null || true - docker rm -f corescope-staging-go 2>/dev/null || true + docker stop corescope-staging-go 2>/dev/null || true + docker rm corescope-staging-go 2>/dev/null || true fuser -k 82/tcp 2>/dev/null || true - docker system prune -f 2>/dev/null || true - name: Start staging on port 82 run: |