From a98369615309a26fb1788f082cb4add589fd9dc3 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Mon, 18 May 2026 14:46:27 +0200 Subject: [PATCH] chore(ci): also purge hidden files in /opt/hostedtoolcache to reclaim disk space --- .gitea/workflows/deploy.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 7fa7d42f4..b4d82d5d7 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -47,8 +47,10 @@ jobs: df -h || true echo "=== Tool Cache Usage ===" du -sh /opt/hostedtoolcache/* || true + du -sh /opt/hostedtoolcache/.[!.]* || true echo "Purging old tool caches..." rm -rf /opt/hostedtoolcache/* || true + rm -rf /opt/hostedtoolcache/.[!.]* || true echo "Purging old build layers and dangling images..." docker builder prune -a -f || true docker image prune -a -f || true