diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4960fa66..7bf28d12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,6 +28,11 @@ jobs: run: git submodule update --init --recursive - name: Locate MSBuild uses: microsoft/setup-msbuild@v1.0.2 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + 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: Restore run: msbuild -t:Restore -m - name: Build diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 445265da..283a937b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,10 +26,13 @@ jobs: run: git submodule update --init --recursive - name: Locate MSBuild uses: microsoft/setup-msbuild@v1.0.2 - - name: Setup Nuget - uses: warrenbuckley/Setup-Nuget@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + 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: Nuget Restore - run: nuget restore + run: msbuild -t:Restore -m - name: Install DocFX uses: crazy-max/ghaction-chocolatey@v1 with: