Merge pull request #178 from frenzibyte/save-android

Work around Android CI workflow errors
This commit is contained in:
Dan Balasescu 2024-11-28 17:35:58 +09:00 committed by GitHub
commit f4001dad7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,10 @@ jobs:
dotnet-version: 8.0.x dotnet-version: 8.0.x
- name: Install Android workload - 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 - name: Build
run: dotnet build SDL3-CS.Android.slnf -c Release run: dotnet build SDL3-CS.Android.slnf -c Release