From 55a561dd7422c0c4ba785d9c54ceb048aa20bd77 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed <40239442+ammarahm-ed@users.noreply.github.com> Date: Thu, 1 Feb 2024 00:16:43 +0500 Subject: [PATCH] Update android.publish.yml Signed-off-by: Ammar Ahmed <40239442+ammarahm-ed@users.noreply.github.com> --- .github/workflows/android.publish.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.github/workflows/android.publish.yml b/.github/workflows/android.publish.yml index 8aa804bfb..278e84c98 100644 --- a/.github/workflows/android.publish.yml +++ b/.github/workflows/android.publish.yml @@ -13,12 +13,21 @@ jobs: USE_CCACHE: 1 steps: - - name: Maximize build space - uses: easimon/maximize-build-space@master + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main with: - root-reserve-mb: 512 - swap-size-mb: 1024 - remove-dotnet: 'true' + # 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: false + haskell: false + large-packages: false + docker-images: true + swap-storage: true - name: Checkout uses: actions/checkout@v2