Browse Source

More adjustments to Actions

pull/62/head
Anairkoen Schno 3 years ago
parent
commit
2246801a40
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
2 changed files with 11 additions and 3 deletions
  1. +5
    -0
      .github/workflows/build.yml
  2. +6
    -3
      .github/workflows/docs.yml

+ 5
- 0
.github/workflows/build.yml View File

@ -28,6 +28,11 @@ jobs:
run: git submodule update --init --recursive
- name: Locate MSBuild
uses: microsoft/[email protected]
- 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


+ 6
- 3
.github/workflows/docs.yml View File

@ -26,10 +26,13 @@ jobs:
run: git submodule update --init --recursive
- name: Locate MSBuild
uses: microsoft/[email protected]
- 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:


Loading…
Cancel
Save