Skip to content

Commit

Permalink
[fix] #26 code sign identity ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
ShapeKim98 committed Jul 24, 2024
1 parent 4be7ba3 commit 8dba88c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ let project = Project(
settings: .settings(
base: [
"OTHER_LDFLAGS": "$(inherited) -ObjC",
"CODE_SIGN_IDENTITY": "iOS Distribution",
"CODE_SIGN_IDENTITY": "Apple Distribution",
"PROVISIONING_PROFILE_SPECIFIER": "match AppStore com.pokitmons.pokit 1721720816",
"PROVISIONING_PROFILE": "match AppStore com.pokitmons.pokit 1721720816",
"DEVELOPMENT_TEAM": "\(developmentTeam ?? "")"
Expand Down
7 changes: 2 additions & 5 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,12 @@ default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
setup_ci(
keychain_password: ENV['KEYCHAIN_PASSWORD']
)
setup_ci

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

Dir.chdir("../") do
Expand Down

0 comments on commit 8dba88c

Please sign in to comment.