From 8a2bf72cc8729d46889ed6ddc9c444aef24d1f71 Mon Sep 17 00:00:00 2001 From: Piyush Garg Date: Thu, 8 Feb 2024 20:53:56 +0530 Subject: [PATCH] Add maximize space step This is to add step in github action to remove dotnet libraries and improve partition to have more space as the action is failing that no more space left --- .github/workflows/release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index fa1b39105..8686073e3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,6 +9,12 @@ jobs: goreleaser: runs-on: ubuntu-latest steps: + - name: Maximize build space + uses: easimon/maximize-build-space@master + with: + root-reserve-mb: 512 + swap-size-mb: 1024 + remove-dotnet: 'true' - uses: actions/checkout@v4 - run: git fetch --prune --unshallow - uses: actions/setup-go@v5