From 2196d59c110e97b5d661b424798b0b6d61dc4676 Mon Sep 17 00:00:00 2001 From: SennayT Date: Tue, 19 May 2026 09:39:52 +0300 Subject: [PATCH] remove cleanup step --- .github/workflows/deploy.yaml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index d9146848b..fa4bef238 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -94,20 +94,3 @@ jobs: - name: ๐Ÿš€ Start ${{ matrix.service }} Service run: docker compose --project-name="edr-${{needs.environment.outputs.target}}" up -d --force-recreate ${{ matrix.service }} --build - - cleanup: - name: ๐Ÿงน Cleanup Docker Resources - runs-on: [self-hosted] - needs: - - deploy-service - if: always() # Run even if previous jobs fail - steps: - - name: ๐Ÿ—‘๏ธ Remove unused Docker resources - run: | - echo "๐Ÿงน Cleaning up Docker resources..." - # Remove all stopped containers - docker container prune -f - # Remove unused images (both dangling and unreferenced) - docker image prune -a -f - - echo "โœ… Docker cleanup completed!"