From 0d5d70aff9204678399feb89381bdc902ce209a1 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 19 Dec 2020 10:32:34 -0500 Subject: [PATCH] Trying a workaraound for dotnet bug https://github.com/actions/setup-dotnet/issues/155 --- .github/workflows/ci-suite.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index fe108595ce..bcf1d2ba62 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -166,6 +166,9 @@ jobs: - name: Checkout uses: actions/checkout@v1 + - name: Clean package cache as a temporary workaround for actions/setup-dotnet#155 + run: dotnet clean && dotnet nuget locals all --clear + - name: Build run: dotnet build -c ${{ matrix.configuration }} @@ -223,6 +226,9 @@ jobs: TEMP_GITHUB_REF="${{ github.event.ref }}" echo "TGS4_GITHUB_REF=${TEMP_GITHUB_REF##*/}" >> $env:GITHUB_ENV + - name: Clean package cache as a temporary workaround for actions/setup-dotnet#155 + run: dotnet clean && dotnet nuget locals all --clear + - name: Run Integration Test run: | cd tests/Tgstation.Server.Tests