From 8cd045c584b4ef22c9d028a4fbba8a407365818b Mon Sep 17 00:00:00 2001 From: UncleGedd <42304551+UncleGedd@users.noreply.github.com> Date: Fri, 16 Aug 2024 10:57:53 -0500 Subject: [PATCH] fix: free up disk space on release workflow (#859) --- .github/workflows/release.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c066a421..14912df2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -26,6 +26,9 @@ jobs: with: fetch-depth: 0 + - name: Free up disk space + run: rm -rf /opt/hostedtoolcache + - name: Setup golang uses: ./.github/actions/golang