From 3705d7a427809c48dc480a286c636be23608a99a Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sun, 8 Mar 2026 17:30:00 +0700 Subject: [PATCH] refactor: remove redundant push latest step and streamline cleanup in test-and-push workflow --- .github/workflows/test-and-push.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-and-push.yml b/.github/workflows/test-and-push.yml index b21cb5f..8cc924b 100644 --- a/.github/workflows/test-and-push.yml +++ b/.github/workflows/test-and-push.yml @@ -58,11 +58,7 @@ jobs: - name: Push ${{ matrix.db }} run: just push ${{ matrix.db }} ${{ env.VERSION }} - - name: Push latest ${{ matrix.db }} - run: just push ${{ matrix.db }} latest - - name: Cleanup ${{ matrix.db }} - run: just clean ${{ matrix.db }} - - - name: Cleanup images ${{ matrix.db }} - run: just clean-images ${{ matrix.db }} + run: | + just clean ${{ matrix.db }} + just clean-images ${{ matrix.db }}