Skip to content

Commit

Permalink
[fix] #26 키체인 암호 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Jul 24, 2024
1 parent 263ac93 commit 4be7ba3
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,21 @@ default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
match(type: "appstore", app_identifier:["com.pokitmons.pokit"], readonly: true)
setup_ci(
keychain_password: ENV['KEYCHAIN_PASSWORD']
)

match(
type: "appstore",
app_identifier:["com.pokitmons.pokit"],
readonly: true,
keychain_password: ENV['KEYCHAIN_PASSWORD']
)

Dir.chdir("../") do
sh("make release")
end
setup_ci

build_app(
workspace: "Pokit.xcworkspace",
scheme: "App",
Expand All @@ -35,6 +45,7 @@ platform :ios do
}
}
)

upload_to_testflight(
api_key_path: "fastlane/key.json",
distribute_external: false,
Expand Down

0 comments on commit 4be7ba3

Please sign in to comment.