We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce14e5 commit d8c6ef8Copy full SHA for d8c6ef8
1 file changed
.github/workflows/release.yml
@@ -14,11 +14,22 @@ jobs:
14
uses: actions/checkout@v2
15
with:
16
fetch-depth: 0
17
+ - name: Setup .NET Core 3.1
18
+ uses: actions/setup-dotnet@v1
19
+ with:
20
+ dotnet-version: 3.1.x
21
+ - name: Setup .NET Core 5
22
23
24
+ dotnet-version: 5.x
25
- name: Setup .NET Core 6
26
uses: actions/setup-dotnet@v1
27
28
dotnet-version: '6.x'
29
include-prerelease: true
30
+ - name: Dotnet info
31
+ run: dotnet --info
32
+ shell: pwsh
33
- name: Build and Test
34
run: ./Build.ps1
35
shell: pwsh
0 commit comments