From 3202ea9b5b858be5775dd7b989007ee0a9909622 Mon Sep 17 00:00:00 2001 From: millianlmx Date: Fri, 26 Jun 2026 23:50:46 +0000 Subject: [PATCH] fix(ci): revert build command from -scheme TabataGo to -target TabataGo xcodegen 2.45.4 does not generate a "TabataGo" scheme (only RevenueCatUI, RevenueCatUITests, TabataGoUITests). The -scheme flag therefore fails. Reverting to -target TabataGo as was previously used. Verified: all .accessoryCorner usages in TabataGoComplication.swift are properly guarded with #if canImport(WatchKit), so the watch target transitive dependency build will not surface accessoryCorner issues. --- .gitea/workflows/pr-iphone-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-iphone-deploy.yml b/.gitea/workflows/pr-iphone-deploy.yml index 60e3401..fc65ba7 100644 --- a/.gitea/workflows/pr-iphone-deploy.yml +++ b/.gitea/workflows/pr-iphone-deploy.yml @@ -57,7 +57,7 @@ jobs: xcodebuild -list xcodebuild build \ -project TabataGo.xcodeproj \ - -scheme TabataGo \ + -target TabataGo \ -destination "generic/platform=iOS" \ -configuration Debug \ -allowProvisioningUpdates \