From efee5d1fa8885fe6fc2eb1f4e08fc13578d3b4f6 Mon Sep 17 00:00:00 2001 From: justheuristic Date: Sat, 2 Mar 2024 20:25:03 +0300 Subject: [PATCH] Clean disk space in push-docker-image.yaml (#558) --- .github/workflows/push-docker-image.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/push-docker-image.yaml b/.github/workflows/push-docker-image.yaml index 345b8f2..58fbb00 100644 --- a/.github/workflows/push-docker-image.yaml +++ b/.github/workflows/push-docker-image.yaml @@ -42,6 +42,17 @@ jobs: username: ${{ secrets.DOCKER_HUB_USERNAME }} password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} + - name: Free disk space on Ubuntu runner + uses: kfir4444/free-disk-space@main + with: + # found in: https://github.com/docker/build-push-action/issues/968 + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: true + swap-storage: true + - name: Build and push id: docker_build uses: docker/build-push-action@v2