From 055bd7bd918ecd02a7b7c64bc6273216ac4f6185 Mon Sep 17 00:00:00 2001 From: Mikkel Jakobsen Date: Thu, 9 Jan 2025 13:39:47 +0100 Subject: [PATCH] Trying out Free Disk Space (Ubuntu) action See if this solves our issue with Github action runner that is running out of space: https://github.com/marketplace/actions/free-disk-space-ubuntu --- .github/workflows/publish-source.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish-source.yml b/.github/workflows/publish-source.yml index d3333941..5dd50b6f 100644 --- a/.github/workflows/publish-source.yml +++ b/.github/workflows/publish-source.yml @@ -5,6 +5,12 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@1.3.1 + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: false - uses: actions/checkout@v4 with: fetch-depth: 0