From 3bfa544aa35b9e1e3ff005a9ce281a8dc0a3698c Mon Sep 17 00:00:00 2001 From: jackson Date: Thu, 21 Mar 2024 17:08:25 -0400 Subject: [PATCH] try to free GH actions disk space --- .github/workflows/docker-image.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index f012931..baf2abc 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -18,6 +18,13 @@ jobs: name: Push Docker image to Docker Hub runs-on: ubuntu-latest steps: + - name: Free Disk Space (Ubuntu) in GH Actions runners (~6GB freed) + uses: jlumbroso/free-disk-space@main + with: + # this might remove tools that are actually needed, + # when set to "true" but frees about 6 GB + tool-cache: false + - name: Check out the repo uses: actions/checkout@v4