Skip to content

Commit

Permalink
fastfile match 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimkyuchul committed Mar 1, 2024
1 parent 6b1b3db commit ed34bdf
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,22 @@ platform :ios do

app_store_connect_api_key(is_key_content_base64: true, in_house: false)

sync_code_signing(
match(
git_url: "[email protected]:kimkyuchul/Jumak-fastlane-certificate.git",
storage_mode: "git",
type: "appstore",
app_identifier: ["com.ios.Makgulli"],
readonly: true
readonly: true,
keychain_name: "#{KEYCHAIN_NAME}",
keychain_password: "#{KEYCHAIN_PASSWORD}"
)

match(
git_url: "[email protected]:kimkyuchul/Jumak-fastlane-certificate.git",
storage_mode: "git",
type: "development",
readonly: true,
keychain_name: "#{KEYCHAIN_NAME}",
keychain_password: "#{KEYCHAIN_PASSWORD}"
)

increment_build_number(
Expand Down

0 comments on commit ed34bdf

Please sign in to comment.