diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 5935097..cda9fbf 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -13,7 +13,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: checkout code + uses: actions/checkout@v2 # here we use the v2 of the checkout action, it is the stable version from github + - name: Workaround for Disk Space #https://github.com/actions/runner-images/issues/2840 + run: | + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf "/usr/local/share/boost" + sudo rm -rf "$AGENT_TOOLSDIRECTORY” - name: 'Create env file' run: echo "${{ secrets.DOT_ENV }}" > .env - name: Build the Docker image