mirror of https://github.com/ppy/SDL3-CS.git
Fix android workflow not installing .NET 8 version
This commit is contained in:
parent
fa446c3285
commit
7d0d0d7569
|
|
@ -42,7 +42,10 @@ jobs:
|
|||
dotnet-version: 8.0.x
|
||||
|
||||
- name: Install Android workload
|
||||
run: dotnet workload install android
|
||||
# since windows image 20241113.3.0, not specifying a version here
|
||||
# installs the .NET 7 version of android workload for very unknown reasons.
|
||||
# revisit once we upgrade to .NET 9, it's probably fixed there.
|
||||
run: dotnet workload install android --version (dotnet --version)
|
||||
|
||||
- name: Build
|
||||
run: dotnet build SDL3-CS.Android.slnf -c Release
|
||||
|
|
|
|||
Loading…
Reference in New Issue