Skip to content

Commit

Permalink
fix: Fastfile 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokki-Kwon committed Oct 18, 2024
1 parent 8294cf7 commit 69f1178
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ platform :ios do
lock_when_sleeps: true
)

match(type: "appstore",
keychain_name: ENV['MATCH_KEYCHAIN_NAME'],
keychain_password: ENV['MATCH_KEYCHAIN_PASSWORD']
)
match(
type: "appstore",
git_url: ENV['GIT_URL'],
storage_mode: "git",
type: "appstore",
app_identifier: ["com.teamHY2.HongikYeolgong2"],
readonly: true,
keychain_name: ENV['MATCH_KEYCHAIN_NAME'],
keychain_password: ENV['MATCH_KEYCHAIN_PASSWORD']
)

sync_code_signing(type: "appstore")

Expand Down

0 comments on commit 69f1178

Please sign in to comment.