From dd2bdef5b442dbd87264374725afcc7a7a1fe0e6 Mon Sep 17 00:00:00 2001 From: Sebastian Pietras Date: Fri, 26 Jul 2024 19:21:40 +0200 Subject: [PATCH] Added freeing disk space in workflows (#70) --- .github/workflows/image.yaml | 2 ++ .github/workflows/registry.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/image.yaml b/.github/workflows/image.yaml index 2b9174c..d2276cc 100644 --- a/.github/workflows/image.yaml +++ b/.github/workflows/image.yaml @@ -44,6 +44,8 @@ jobs: # Needed to checkout code contents: read steps: + - name: Free disk space + uses: jlumbroso/free-disk-space@v1.3.1 - name: Checkout code uses: actions/checkout@v4.1.1 - name: Set up Docker Buildx diff --git a/.github/workflows/registry.yaml b/.github/workflows/registry.yaml index e96e8d6..b9dc750 100644 --- a/.github/workflows/registry.yaml +++ b/.github/workflows/registry.yaml @@ -20,6 +20,8 @@ jobs: # Needed to push to registry packages: write steps: + - name: Free disk space + uses: jlumbroso/free-disk-space@v1.3.1 - name: Checkout code uses: actions/checkout@v4.1.1 - name: Set up Docker Buildx