fix: add manual code signing args to build_app in fastlane
Some checks failed
CI / Scraper / Lint (pull_request) Successful in 8s
CI / Scraper / Test (pull_request) Successful in 16s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Build (pull_request) Successful in 27s
CI / UI / Docker Push (pull_request) Has been skipped
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
iOS Release / Release to TestFlight (push) Failing after 54s

This commit is contained in:
Admin
2026-03-09 18:18:30 +05:00
parent dae841e317
commit 7da5582075

View File

@@ -12,12 +12,15 @@ platform :ios do
xcodeproj: "LibNovel.xcodeproj"
)
# Build the app
# Build the app with manual code signing
build_app(
scheme: "LibNovel",
export_method: "app-store",
clean: true,
configuration: "Release",
xcargs: "CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY='Apple Distribution' -allowProvisioningUpdates",
export_options: {
method: "app-store",
provisioningProfiles: {
"com.kalekber.LibNovel" => ENV["PROVISIONING_PROFILE_NAME"] || "LibNovel Distribution"
}