Skip to content

Commit

Permalink
Fix android workflow not installing .NET 8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Nov 28, 2024
1 parent 573aaf6 commit 19e396f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ jobs:
dotnet-version: "8.0.x"

- name: Install .NET workloads
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: Compile
run: dotnet build -c Debug osu.Android.slnf
Expand Down

0 comments on commit 19e396f

Please sign in to comment.