From 047866295b631ccc41b6ff671f6228f5bc7b5eae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Diego=20Rodr=C3=ADguez=20Royo?= Date: Mon, 28 Aug 2023 11:07:22 +0000 Subject: [PATCH] Added comment about the workaround for space issues --- .github/workflows/docker-image.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 0baf97fbe..3793b301a 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -40,11 +40,13 @@ jobs: runs-on: ubuntu-latest steps: + # Workaround for disk space issues on the GitHub runner + - run: sudo rm -rf /usr/share/dotnet + - run: sudo rm -rf "$AGENT_TOOLSDIRECTORY" + # Depending on the branch/tag, set TAG_NAME (used when tagging the image). # # The following 3 steps cover the alternatives (tag, release branch, main branch): - - run: sudo rm -rf /usr/share/dotnet - - run: sudo rm -rf "$AGENT_TOOLSDIRECTORY" - name: Set variables (tags) if: ${{ github.ref_type == 'tag' }} run: |