Skip to content

Commit e69bd36

Browse files
committed
🔧 Restore installation of .net6
1 parent d18c4b5 commit e69bd36

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ jobs:
3131
submodules: recursive
3232
fetch-depth: 0
3333

34+
- name: ⚙ dotnet 6.0.x
35+
uses: actions/setup-dotnet@v1
36+
with:
37+
dotnet-version: 6.0.x
38+
include-prerelease: true
39+
3440
- name: ✓ ensure format
3541
run: |
3642
dotnet tool update -g dotnet-format --version 5.0.*
@@ -51,6 +57,12 @@ jobs:
5157
submodules: recursive
5258
fetch-depth: 0
5359

60+
- name: ⚙ dotnet 6.0.x
61+
uses: actions/setup-dotnet@v1
62+
with:
63+
dotnet-version: 6.0.x
64+
include-prerelease: true
65+
5466
- name: 🙏 build
5567
run: dotnet build -m:1 -p:VersionLabel="$GITHUB_REF.$GITHUB_RUN_NUMBER"
5668

.github/workflows/publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
submodules: recursive
2222
fetch-depth: 0
2323

24+
- name: ⚙ dotnet 6.0.x
25+
uses: actions/setup-dotnet@v1
26+
with:
27+
dotnet-version: 6.0.x
28+
include-prerelease: true
29+
2430
- name: 🙏 build
2531
run: dotnet build -m:1 -p:version=${GITHUB_REF#refs/*/v}
2632

0 commit comments

Comments
 (0)