Limited
2
0

chore(ci): split apple builds and include readme in package

Separate iOS and macCatalyst builds into distinct steps for better error isolation. Add README.md to NuGet package for documentation visibility on NuGet.org.
This commit is contained in:
2026-03-03 23:46:39 -05:00
parent 1a0e3b94c7
commit ea7dc8ad28
2 changed files with 10 additions and 2 deletions

View File

@@ -67,9 +67,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build iOS & macCatalyst
- name: Build iOS
run: |
dotnet build BuyMeCofee.Maui/BuyMeCofee.Maui.csproj -c Release
dotnet build BuyMeCofee.Maui/BuyMeCofee.Maui.csproj -c Release -f net10.0-ios
- name: Build macCatalyst
run: |
dotnet build BuyMeCofee.Maui/BuyMeCofee.Maui.csproj -c Release -f net10.0-maccatalyst
# Publish NuGet + create Gitea release
publish:

View File

@@ -51,4 +51,8 @@
LogicalName="BuyMeCofee.Maui.Resources.Images.bmc_logo.png" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>