Browse Source

More adjustments to Actions

pull/62/head
Anairkoen Schno 3 years ago
parent
commit
bca4b0528d
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
2 changed files with 8 additions and 4 deletions
  1. +1
    -0
      .github/workflows/build.yml
  2. +7
    -4
      .github/workflows/tag_docs.yml

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

@ -16,6 +16,7 @@ jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
platform: ["x86", "x64"]
env:


+ 7
- 4
.github/workflows/tag_docs.yml View File

@ -24,11 +24,14 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Locate MSBuild
uses: warrenbuckley/Setup-MSBuild@v1
- name: Setup Nuget
uses: warrenbuckley/Setup-Nuget@v1
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: Nuget Restore
run: nuget restore
run: msbuild -t:Restore -m
- name: Install DocFX
uses: crazy-max/ghaction-chocolatey@v1
with:


Loading…
Cancel
Save