Skip to content

Commit

Permalink
sync_code_signing 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkyuchul committed Mar 2, 2024
1 parent 3c6264f commit be221ca
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,20 +54,30 @@ platform :ios do
keychain_password: "#{KEYCHAIN_PASSWORD}"
)

sync_code_signing(
type: "appstore",
app_identifier: ["com.ios.Makgulli"],
readonly: true
)

increment_build_number(
build_number: latest_testflight_build_number() + 1
)

cocoapods(clean_install: true, use_bundle_exec: false)

gym(
workspace: "Makgulli.xcworkspace",
scheme: "Makgulli",
export_options: {
method: "app-store",
signingStyle: "manual"
}
)
build_app(
configuration: "Debug"
)

# gym(
# workspace: "Makgulli.xcworkspace",
# scheme: "Makgulli",
# export_options: {
# method: "app-store",
# signingStyle: "manual"
# }
# )

upload_to_testflight(skip_waiting_for_build_processing: true)

Expand Down

0 comments on commit be221ca

Please sign in to comment.