From 2e606f313b3ef448b550c8c85ddd7a1a0cff4a0e Mon Sep 17 00:00:00 2001 From: Verwoerd Date: Sun, 27 Oct 2024 14:12:20 +0100 Subject: [PATCH] workaround for build issues --- .github/workflows/docker.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 5e73adb..f93d8ae 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -11,6 +11,21 @@ jobs: name: Build Docker image 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: true + swap-storage: true - name: Checkout code uses: actions/checkout@v4 with: @@ -30,7 +45,7 @@ jobs: - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: - hugo-version: '0.135.0' + hugo-version: '0. 135.0' extended: true - name: Build run: hugo --minify --noTimes=false