From 3ca3e54837291040b590cfdf42858962edf57d9d Mon Sep 17 00:00:00 2001 From: millianlmx Date: Sat, 27 Jun 2026 02:02:12 +0000 Subject: [PATCH] =?UTF-8?q?fix(ci):=20add=20-derivedDataPath=20and=20targe?= =?UTF-8?q?t=20find=20to=20build/derived=20=E2=80=94=20compatible=20with?= =?UTF-8?q?=20-scheme?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pr-iphone-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pr-iphone-deploy.yml b/.gitea/workflows/pr-iphone-deploy.yml index 85ea07d..6eb692c 100644 --- a/.gitea/workflows/pr-iphone-deploy.yml +++ b/.gitea/workflows/pr-iphone-deploy.yml @@ -68,6 +68,8 @@ jobs: -configuration Debug \ -allowProvisioningUpdates \ -skipPackagePluginValidation \ + -derivedDataPath ../build/derived \ + -clonedSourcePackagesDirPath ../build/spm-cache \ SWIFT_ENABLE_EXPLICIT_MODULES=NO \ ONLY_ACTIVE_ARCH=NO \ CODE_SIGN_STYLE=Automatic DEVELOPMENT_TEAM=2MJF39L8VY @@ -76,7 +78,7 @@ jobs: run: | cd tabatago-swift mkdir -p Payload - APP=$(find .. -name 'TabataGo.app' -type d | head -1) + APP=$(find ../build/derived -name 'TabataGo.app' -type d | head -1) cp -R "$APP" Payload/ zip -r build/TabataGo.ipa Payload/ rm -rf Payload