From e41bec91a0bb95e6618523ce9e14933ec0bcbde8 Mon Sep 17 00:00:00 2001 From: Bernhard B Date: Sun, 23 Nov 2025 23:27:20 +0100 Subject: [PATCH] clean up free disk space --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a50ba32..2b2c703 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: - name: Install Podman run: sudo apt update && sudo apt install -y podman - name: Free up some disk space - run: sudo rm -rf /usr/share/dotnet && sudo rm -rf "$AGENT_TOOLSDIRECTORY" + run: sudo apt-get remove -y '^aspnetcore-.*' && sudo apt-get remove -y '^dotnet-.*' --fix-missing && sudo apt-get remove -y 'php.*' --fix-missing && sudo apt-get remove -y '^mongodb-.*' --fix-missing && sudo apt-get autoremove -y && sudo apt-get clean build: runs-on: ubuntu-24.04 needs: setup