diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58e46e02f78..8a0d99192a6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,14 @@ jobs: steps: - name: Free up some disk space on the Github runner - run: du -hs /opt/hostedtoolcache; rm -rf /opt/hostedtoolcache + run: | + du -hs /opt/hostedtoolcache + rm -rf /opt/hostedtoolcache + echo "Free space:" + df -h + + - name: Maximize build space + uses: easimon/maximize-build-space@master - name: Checkout repository uses: actions/checkout@v4 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 78433ade225..69d2815a941 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,14 @@ jobs: steps: - name: Free up some disk space on the Github runner - run: du -hs /opt/hostedtoolcache; rm -rf /opt/hostedtoolcache + run: | + du -hs /opt/hostedtoolcache + rm -rf /opt/hostedtoolcache + echo "Free space:" + df -h + + - name: Maximize build space + uses: easimon/maximize-build-space@master - name: Checkout repository uses: actions/checkout@v4