fix(ci): remove grep -v DerivedData from Package IPA step — app builds to DerivedData
Some checks failed
PR → Build → Firebase OTA → LGTM / Build & Deploy to Firebase OTA (pull_request) Failing after 6m28s
PR → Build → Firebase OTA → LGTM / Wait for LGTM comment (pull_request) Has been skipped

This commit is contained in:
2026-06-27 01:54:33 +00:00
parent b48178f167
commit 4e2e807fd9

View File

@@ -76,7 +76,7 @@ jobs:
run: |
cd tabatago-swift
mkdir -p Payload
APP=$(find .. -name 'TabataGo.app' -type d | grep -v DerivedData | head -1)
APP=$(find .. -name 'TabataGo.app' -type d | head -1)
cp -R "$APP" Payload/
zip -r build/TabataGo.ipa Payload/
rm -rf Payload