From 2f4059f15d7b697f630d90f8102af9e0b31774e2 Mon Sep 17 00:00:00 2001 From: Freddy Li Date: Wed, 11 Sep 2024 11:59:07 -0400 Subject: [PATCH] add remove disk space step --- .../workflows/phala-e2e-docker-build-push.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/workflows/phala-e2e-docker-build-push.yml b/.github/workflows/phala-e2e-docker-build-push.yml index f061183..1fd48df 100644 --- a/.github/workflows/phala-e2e-docker-build-push.yml +++ b/.github/workflows/phala-e2e-docker-build-push.yml @@ -16,6 +16,22 @@ jobs: name: Push Phala subbridge integrated E2E Docker image to GitHub Container Registry runs-on: ubuntu-latest 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: false + swap-storage: true + - name: Check out the repo uses: actions/checkout@v3 with: