From c0fae914d83436c802c4d02ee51aca0cfed6b4ce Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Thu, 1 Jan 2026 20:48:48 +0500 Subject: [PATCH] hack: try to free up disk space on Flatpak builds so they don't crash Signed-off-by: Octol1ttle (cherry picked from commit eafce5d5f679b5b838bd04aaa81b383c282d9d58) --- .github/workflows/flatpak.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index e3fbb2c32..7f7a3c528 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -82,8 +82,15 @@ jobs: container: image: ghcr.io/flathub-infra/flatpak-github-actions:kde-6.10 options: --privileged + volumes: + - /opt/hostedtoolcache:/hostedtoolcache steps: + - name: Free up disk space + shell: bash + run: | + rm -rf /hostedtoolcache/* + - name: Checkout repository uses: actions/checkout@v6 with: