From 2166aa9ce44a45441fcdf3ba0a58d78d03aedebd Mon Sep 17 00:00:00 2001 From: cdricms <36056008+cdricms@users.noreply.github.com> Date: Mon, 27 Jul 2026 10:21:54 +0200 Subject: [PATCH] build(apple): ship TestFlight build 7 as Release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Set CURRENT_PROJECT_VERSION to 7 for the next TestFlight upload, and pin the scheme's Archive/Profile actions to the Release configuration so Product → Archive can't pick up Debug. --- apple/project.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/apple/project.yml b/apple/project.yml index 2e05ee7..8f8fede 100644 --- a/apple/project.yml +++ b/apple/project.yml @@ -44,7 +44,7 @@ targets: base: PRODUCT_BUNDLE_IDENTIFIER: com.vnidrop.app MARKETING_VERSION: "0.1.0" - CURRENT_PROJECT_VERSION: "3" + CURRENT_PROJECT_VERSION: "7" GENERATE_INFOPLIST_FILE: NO INFOPLIST_FILE: VniDrop/Resources/Info.plist # Mirror the Info.plist identity so Xcode's Identity editor shows it too @@ -114,3 +114,9 @@ schemes: config: Debug targets: - VniDropTests + # TestFlight ships the Release build; make the Archive/Profile actions explicit + # so Product → Archive can never pick up a Debug configuration. + profile: + config: Release + archive: + config: Release