Skip to content

Commit fbf2a8a

Browse files
committed
disable autoamtic code signing
1 parent a442531 commit fbf2a8a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

fastlane/Fastfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ platform :ios do
1010

1111
desc "build swift-sample-app .ipa"
1212
lane :build_swift_sample_app do
13+
disable_automatic_code_signing(path: "sample-apps/swift-sample-app/swift-sample-app.xcodeproj")
1314
build_app(
1415
project: "sample-apps/swift-sample-app/swift-sample-app.xcodeproj",
1516
configuration: "Debug",
@@ -22,9 +23,11 @@ platform :ios do
2223
skip_codesigning: true,
2324
export_method: "development",
2425
export_team_id: "BP98Z28R86",
25-
export_xcargs: "-allowProvisioningUpdates",
26-
export_options: { compileBitcode: false }
26+
# export_xcargs: "-allowProvisioningUpdates",
27+
# export_options: { compileBitcode: false }
2728
)
29+
enable_automatic_code_signing(path: "sample-apps/swift-sample-app/swift-sample-app.xcodeproj")
30+
2831
end
2932

3033
desc "build swift-sample-app UI tests"

0 commit comments

Comments
 (0)