fix: switch to automatic signing for archive, manual for export
Some checks failed
iOS CI / Test (push) Has been cancelled
iOS CI / Build (push) Has been cancelled
iOS CI / Build (pull_request) Has been cancelled
iOS CI / Test (pull_request) Has been cancelled
CI / Scraper / Test (pull_request) Successful in 15s
CI / Scraper / Lint (pull_request) Successful in 16s
CI / UI / Build (pull_request) Successful in 16s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Docker Push (pull_request) Has been skipped
iOS Release / Release to TestFlight (push) Failing after 1m3s

This commit is contained in:
Admin
2026-03-09 18:37:15 +05:00
parent e4c72011eb
commit 264c00c765

View File

@@ -12,12 +12,11 @@ platform :ios do
xcodeproj: "LibNovel.xcodeproj"
)
# Update code signing settings - let Xcode automatically select the profile
# Use automatic signing - Xcode will find the right profile
update_code_signing_settings(
use_automatic_signing: false,
use_automatic_signing: true,
path: "LibNovel.xcodeproj",
team_id: "GHZXC6FVMU",
code_sign_identity: "Apple Distribution",
targets: ["LibNovel"]
)
@@ -27,10 +26,9 @@ platform :ios do
export_method: "app-store",
clean: true,
configuration: "Release",
xcargs: "-allowProvisioningUpdates",
export_options: {
method: "app-store",
signingStyle: "manual",
teamID: "GHZXC6FVMU",
provisioningProfiles: {
"com.kalekber.LibNovel" => ENV["PROVISIONING_PROFILE_NAME"] || "LibNovel Distribution"
}