Skip to content

Commit d584f7d

Browse files
committed
Fixed duplicate formatting issue in actions
Added dotnet SDK to release builds * I REALLY REALLY HATE whitespace sensitive languages.
1 parent 6125f16 commit d584f7d

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/pr-build.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
persist-credentials: false
5050
fetch-depth: 0
5151

52-
# ensure .NET 10 SDK is present
52+
# ensure .NET 10 SDK is present
5353
- name: Setup dotnet
5454
uses: actions/setup-dotnet@v5
5555
with:
@@ -83,12 +83,11 @@ jobs:
8383
with:
8484
persist-credentials: false
8585

86-
# ensure .NET 10 SDK is present
87-
- name: Setup dotnet
86+
# ensure .NET 10 SDK is present
87+
- name: Setup dotnet
8888
uses: actions/setup-dotnet@v5
8989
with:
90-
dotnet-version: '10.0.x'
91-
90+
dotnet-version: '10.0.x'
9291

9392
- name: Build Docs
9493
run: ./Build-Docs.ps1 -FullInit -Configuration Release

.github/workflows/release-build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
persist-credentials: false
3131
fetch-depth: 0
3232

33+
# ensure .NET 10 SDK is present
34+
- name: Setup dotnet
35+
uses: actions/setup-dotnet@v5
36+
with:
37+
dotnet-version: '10.0.x'
38+
3339
- name: Build Source
3440
run: .\Build-Source.ps1 -FullInit -ForceClean
3541

@@ -81,4 +87,3 @@ jobs:
8187
with:
8288
draft: true
8389
files: BuildOutput/NuGet/*.nupkg
84-

0 commit comments

Comments
 (0)