Skip to content

Commit b91849f

Browse files
authored
fix(ci): update dotnet-version from 9.0.x to 10.0.x (#94)
The global.json requires SDK 10.0.103 but the workflow only installed 9.0.x. The runner's pre-installed 10.0.102 is one patch behind, causing `dotnet workload install wasm-tools` to fail with "compatible .NET SDK was not found". Installing 10.0.x ensures the latest 10.0 SDK is available to satisfy the global.json requirement.
1 parent e1e9627 commit b91849f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup .NET Core
1717
uses: actions/setup-dotnet@v5
1818
with:
19-
dotnet-version: 9.0.x
19+
dotnet-version: 10.0.x
2020

2121
# Install .NET Wasm-Tools
2222
- name: Install .NET WebAssembly Tools

0 commit comments

Comments
 (0)