diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6b86976..d5fe15c0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,6 +34,8 @@ jobs: with: # As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json dotnet-version: "3.1.404" # since we now use this + - name: Clear Nuget Cache + run: dotnet nuget locals all --clear - name: Restore run: msbuild -t:Restore -m - name: Build @@ -47,4 +49,4 @@ jobs: uses: actions/upload-artifact@v2 with: name: BSIPA-net35-${{ env.Platform }} - path: BSIPA-Meta/bin/${{ env.Platform }}/${{ env.Configuration }}/net35/ \ No newline at end of file + path: BSIPA-Meta/bin/${{ env.Platform }}/${{ env.Configuration }}/net35/ diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 283a937b..868aaeab 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -31,6 +31,8 @@ jobs: with: # As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json dotnet-version: "3.1.404" # since we now use this + - name: Clear Nuget Cache + run: dotnet nuget locals all --clear - name: Nuget Restore run: msbuild -t:Restore -m - name: Install DocFX diff --git a/.github/workflows/tag_docs.yml b/.github/workflows/tag_docs.yml index db0ff662..c6031945 100644 --- a/.github/workflows/tag_docs.yml +++ b/.github/workflows/tag_docs.yml @@ -30,6 +30,8 @@ jobs: with: # As usual, obtained from: https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/5.0/releases.json dotnet-version: "3.1.404" # since we now use this + - name: Clear Nuget Cache + run: dotnet nuget locals all --clear - name: Nuget Restore run: msbuild -t:Restore -m - name: Install DocFX