From b9e82712d8889449ac533b07942ddb45353f3bae Mon Sep 17 00:00:00 2001 From: Gaius Date: Tue, 5 Mar 2024 19:47:59 +0800 Subject: [PATCH] chore: free disk space in actions (#302) Signed-off-by: Gaius --- .github/workflows/release.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d080cdf2..507f82d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,22 @@ jobs: - aarch64-unknown-linux-musl steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: false + + # all of these default to true, but feel free to set to + # "false" if necessary for your workflow + android: true + dotnet: true + haskell: true + large-packages: true + docker-images: true + swap-storage: true + - name: Checkout uses: actions/checkout@v4