Skip to content

Commit cafcbd2

Browse files
committed
Add net6/7 to workflow again
1 parent 5e3e62d commit cafcbd2

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/ci-build.yml

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ jobs:
3535

3636
steps:
3737
- uses: actions/checkout@v2
38+
- name: Setup .NET 6
39+
uses: actions/setup-dotnet@v1
40+
with:
41+
dotnet-version: 6.0.*
42+
- name: Setup .NET 7
43+
uses: actions/setup-dotnet@v1
44+
with:
45+
dotnet-version: 7.0.*
3846
- name: Setup .NET 8
3947
uses: actions/setup-dotnet@v1
4048
with:

.github/workflows/ci-publish.yml

+8
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,14 @@ jobs:
6969

7070
steps:
7171
- uses: actions/checkout@v2
72+
- name: Setup .NET 6
73+
uses: actions/setup-dotnet@v1
74+
with:
75+
dotnet-version: 6.0.*
76+
- name: Setup .NET 7
77+
uses: actions/setup-dotnet@v1
78+
with:
79+
dotnet-version: 7.0.*
7280
- name: Setup .NET 8
7381
uses: actions/setup-dotnet@v1
7482
with:

0 commit comments

Comments
 (0)