Skip to content

Commit

Permalink
fix: development로 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokki-Kwon committed Oct 17, 2024
1 parent dc764be commit 5be4db0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 3 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ platform :ios do
)

match(
type: "appstore",
type: "development",
app_identifier: ["com.teamHY2.HongikYeolgong2"],
readonly: true,
keychain_name: ENV['MATCH_KEYCHAIN_NAME'],
Expand All @@ -53,10 +53,10 @@ platform :ios do
# 앱빌드
build_app(
scheme: "HongikYeolgong2",
export_method: "app-store",
export_method: "development",
export_options: {
provisioningProfiles: {
"com.teamHY2.HongikYeolgong2" => "match AppStore com.teamHY2.HongikYeolgong2"
"com.teamHY2.HongikYeolgong2" => "match Development com.teamHY2.HongikYeolgong2"
}
}
)
Expand Down
7 changes: 2 additions & 5 deletions fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
git_url("[email protected]:TeamHY2/fastlane-match-certificate.git")

storage_mode("git")

team_id("P4D4ZQC4YF")
type("appstore") # The default type, can be: appstore, adhoc, enterprise or development

type("development")
app_identifier("com.teamHY2.HongikYeolgong2")
username("[email protected]") # Your Apple Developer Portal username
username("[email protected]")

# For all available options run `fastlane match --help`
# Remove the # in the beginning of the line to enable the other options
Expand Down

0 comments on commit 5be4db0

Please sign in to comment.