Skip to content

Commit 7c641c9

Browse files
Merge pull request #20 from ShawnLaMountain/SoureGenerator
Updating CD to build with .Net 6 and .Net 8. Commented out Publishing…
2 parents 53b8e0d + 7d0d9a6 commit 7c641c9

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

.github/workflows/CD.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,27 @@ env:
2323

2424
jobs:
2525
pack:
26-
27-
runs-on: [windows-2019]
26+
runs-on: [windows-latest]
2827

2928
steps:
3029
- name: Checkout
3130
uses: actions/checkout@v2
32-
31+
3332
- name: Setup .NET 2.0
3433
uses: actions/setup-dotnet@v1
3534
with:
3635
dotnet-version: 2.0.x
37-
36+
37+
- name: Setup .NET 6
38+
uses: actions/setup-dotnet@v1
39+
with:
40+
dotnet-version: 6.0.x
41+
42+
- name: Setup .NET 8
43+
uses: actions/setup-dotnet@v1
44+
with:
45+
dotnet-version: 8.0.x
46+
3847
- name: Setup MSBuild
3948
uses: microsoft/setup-msbuild@v1.1
4049

0 commit comments

Comments
 (0)