Skip to content

Commit f9d9f3f

Browse files
committed
fix: Add MAUI workload installation to GitHub Actions workflow
- Install maui-android, maui-ios, maui-maccatalyst, maui-windows workloads - Required for building Lifter.Maui project - Fixes NETSDK1147 error in GitHub Actions
1 parent 83332c7 commit f9d9f3f

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ jobs:
4040
echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
4141
fi
4242
43-
# 4. Restore dependencies
43+
# 4. Install MAUI workloads (required for Lifter.Maui)
44+
- name: Install MAUI workloads
45+
run: dotnet workload install maui-android maui-ios maui-maccatalyst maui-windows
46+
47+
# 5. Restore dependencies
4448
- name: Restore dependencies
4549
run: dotnet restore Lifter.Libraries.sln
4650

0 commit comments

Comments
 (0)