From 6806f4dee8d0570c7b0eb60faaf879b788a2d765 Mon Sep 17 00:00:00 2001 From: ThibaultBee Date: Mon, 16 Sep 2024 18:31:03 +0000 Subject: [PATCH] fix(swift5): build on iPhone 16 instead of 13 to fix a build issue --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bdda1dd..65e710f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: scheme: ${{ 'default' }} run: | if [ $scheme = default ]; then scheme=$(cat default); fi - xcodebuild -scheme $scheme -destination 'platform=iOS Simulator,name=iPhone 13' + xcodebuild -scheme $scheme -destination 'platform=iOS Simulator,name=iPhone 16' - name: Build Example env: scheme: ${{ 'default' }}