SDL: Build the Framework instead of a static library for iOS and tvOS

From 76b4d8a0d83a580295f5b6d25b6c7e421cbe0066 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Mon, 31 Jul 2023 20:53:43 -0700
Subject: [PATCH] Build the Framework instead of a static library for iOS and
 tvOS

---
 .github/workflows/ios.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml
index fb92ecd182a5..2c18d5c32320 100644
--- a/.github/workflows/ios.yml
+++ b/.github/workflows/ios.yml
@@ -15,8 +15,8 @@ jobs:
       fail-fast: false
       matrix:
         platform:
-        - { name: iOS, target: Static Library-iOS, sdk: iphoneos }
-        - { name: tvOS, target: Static Library-tvOS, sdk: appletvos }
+        - { name: iOS, target: Framework, sdk: iphoneos }
+        - { name: tvOS, target: Framework, sdk: appletvos }
 
     steps:
       - uses: actions/checkout@v3