Skip to content

Commit a342187

Browse files
committed
fix: maccatalyst min version 15.0, make builds independent
1 parent 83a9bec commit a342187

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/buildrelease.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,8 +412,17 @@ jobs:
412412
upload-release:
413413
name: Upload to Release
414414
needs: [build-server, build-android, build-windows, build-macos]
415+
if: always() && needs.build-server.result == 'success'
415416
runs-on: ubuntu-latest
416417
steps:
418+
- name: '📊 Build Status Summary'
419+
run: |
420+
echo "Build Results:"
421+
echo " Server: ${{ needs.build-server.result }}"
422+
echo " Android: ${{ needs.build-android.result }}"
423+
echo " Windows: ${{ needs.build-windows.result }}"
424+
echo " macOS: ${{ needs.build-macos.result }}"
425+
417426
- name: '📥 Download all artifacts'
418427
uses: actions/download-artifact@v4
419428
with:
@@ -422,7 +431,7 @@ jobs:
422431
- name: '📋 List artifacts'
423432
run: |
424433
echo "Downloaded artifacts:"
425-
find artifacts -type f -name "*.*" | head -50
434+
find artifacts -type f -name "*.*" 2>/dev/null | head -50 || echo "No artifacts found"
426435
427436
- name: '🚀 Upload to GitHub Release'
428437
env:

TFMAudioApp/TFMAudioApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<!-- Platform minimum versions -->
4444
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion>
4545
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion>
46-
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion>
46+
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">15.0</SupportedOSPlatformVersion>
4747
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion>
4848
</PropertyGroup>
4949

0 commit comments

Comments
 (0)