Skip to content

Commit

Permalink
Force code sign identity
Browse files Browse the repository at this point in the history
  • Loading branch information
BPerlakiH committed Jan 30, 2024
1 parent 9688efb commit 05924b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ platform :ios do
update_code_signing_settings(
use_automatic_signing: false,
path: "Kiwix.xcodeproj",
profile_name: "match AppStore self.Kiwix"
profile_name: "match AppStore self.Kiwix",
code_sign_identity: "Apple Distribution",
build_configurations: "Release"
)
gym(
destination: "generic/platform=iOS",
Expand Down Expand Up @@ -117,7 +119,7 @@ private_lane :ci_settings do
end

private_lane :match_certificates do
["development", "appstore"].each do |type|
["appstore"].each do |type|
if is_ci
match(type: type, readonly: true, git_url: "./certificates")
else
Expand Down

0 comments on commit 05924b4

Please sign in to comment.