From 80f517894a5e25588d70bcc240672507143099bd Mon Sep 17 00:00:00 2001 From: Pavel Bartsits <48913536+cxnt@users.noreply.github.com> Date: Thu, 12 Oct 2023 12:32:22 +0400 Subject: [PATCH] add disk space cleaner action for ubuntu runner --- .github/workflows/manual-build-push-release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/manual-build-push-release.yml b/.github/workflows/manual-build-push-release.yml index b51889e..91ec09d 100644 --- a/.github/workflows/manual-build-push-release.yml +++ b/.github/workflows/manual-build-push-release.yml @@ -13,6 +13,17 @@ jobs: runs-on: ubuntu-latest steps: + - + name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true - name: Checkout uses: actions/checkout@v2