Browse Source

Cleaned up installing multiple dotnets

tags/v0.4.2-preview
Martin Evans 2 years ago
parent
commit
1545b821d7
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      .github/workflows/main.yml

+ 4
- 5
.github/workflows/main.yml View File

@@ -35,11 +35,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
with:
dotnet-version: |
6.0.x
7.0.x
# workaround for actions/setup-dotnet#155
- name: Clear package cache
run: dotnet clean LLamaSharp.sln && dotnet nuget locals all --clear


Loading…
Cancel
Save