From 3a97418cfc6ab0334a4a4b51d4789f34b82b0dfc Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 23 Nov 2025 13:30:03 -0800 Subject: [PATCH] Inspect the disk and cache sizing before any changes --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c20a01c38..19acacfbe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -406,6 +406,12 @@ jobs: registry: quay.io username: ${{ secrets.QUAY_USERNAME }} password: ${{ secrets.QUAY_ROBOT_TOKEN }} + - name: Inspect cache/disk + if: always() + run: | + df -h + docker system df -v + docker buildx du - name: Build and push uses: docker/build-push-action@v6 with: @@ -427,6 +433,12 @@ jobs: if: steps.build-vars.outputs.can-push == 'true' run: | docker buildx imagetools inspect ${{ fromJSON(steps.docker-meta.outputs.json).tags[0] }} + - name: Inspect cache/disk + if: always() + run: | + df -h + docker system df -v + docker buildx du - name: Export frontend artifact from docker if: steps.build-vars.outputs.can-push == 'true' run: |