From 7f19d268b3563e3683eaca02d9665fed66ce862e Mon Sep 17 00:00:00 2001 From: Indi <30554197+Ind-E@users.noreply.github.com> Date: Mon, 17 Nov 2025 01:11:06 -0800 Subject: CI: free disk space before running nix flake check (#2821) * CI: free disk space before running nix flake check * disable cleaning dotnet and large-packages in nix CI free-disk-space --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c84670ae..04603054 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -285,6 +285,12 @@ jobs: nix: runs-on: ubuntu-24.04 steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@v1.3.1 + with: + dotnet: false + large-packages: false + - uses: actions/checkout@v4 with: show-progress: false -- cgit