Skip to content

Commit d99007a

Browse files
authored
Merge pull request #337 from EAT-SSU/feat/#336
[#336] Fastlane 2μ°¨ μ„ΈνŒ…
2 parents c45c97d + 9bcdf5e commit d99007a

File tree

6 files changed

+18
-71
lines changed

6 files changed

+18
-71
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,7 @@ fastlane/test_output
8383
### fastlane
8484
fastlane/.env
8585
.env
86-
86+
fastlane/api_key.json
87+
fastlane/AuthKey_*.p8
88+
*.p8
8789

β€ŽEATSSU/Project.swiftβ€Ž

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -229,15 +229,15 @@ let project = Project(
229229
configurations: [
230230
.debug(name: "Debug",
231231
settings: [
232-
"PROVISIONING_PROFILE_SPECIFIER": "match Development com.jiwoo.EatSSU",
233-
"CODE_SIGN_IDENTITY": "Apple Development"
232+
"PROVISIONING_PROFILE_SPECIFIER": "match Development com.jiwoo.EatSSU.EatSSUwidget2025",
233+
"CODE_SIGN_IDENTITY": "Apple Development"
234234
],
235235
xcconfig: "App/Resources/Secrets/Debug.xcconfig"
236236
),
237237
.release(name: "Release",
238238
settings: [
239-
"PROVISIONING_PROFILE_SPECIFIER": "match AppStore com.jiwoo.EatSSU",
240-
"CODE_SIGN_IDENTITY": "Apple Distribution"
239+
"PROVISIONING_PROFILE_SPECIFIER": "match AppStore com.jiwoo.EatSSU.EatSSUwidget2025",
240+
"CODE_SIGN_IDENTITY": "Apple Distribution"
241241
],
242242
xcconfig: "App/Resources/Secrets/Release.xcconfig"
243243
)
@@ -270,15 +270,15 @@ let project = Project(
270270
configurations: [
271271
.debug(name: "Debug",
272272
settings: [
273-
"PROVISIONING_PROFILE_SPECIFIER": "match Development com.jiwoo.EatSSU",
274-
"CODE_SIGN_IDENTITY": "Apple Development"
273+
"PROVISIONING_PROFILE_SPECIFIER": "match Development com.jiwoo.EatSSU.EatSSUwidget2025",
274+
"CODE_SIGN_IDENTITY": "Apple Development"
275275
],
276276
xcconfig: "App/Resources/Secrets/Debug.xcconfig"
277277
),
278278
.release(name: "Release",
279279
settings: [
280-
"PROVISIONING_PROFILE_SPECIFIER": "match AppStore com.jiwoo.EatSSU",
281-
"CODE_SIGN_IDENTITY": "Apple Distribution"
280+
"PROVISIONING_PROFILE_SPECIFIER": "match AppStore com.jiwoo.EatSSU.EatSSUwidget2025",
281+
"CODE_SIGN_IDENTITY": "Apple Distribution"
282282
],
283283
xcconfig: "App/Resources/Secrets/Release.xcconfig"
284284
)

β€Žfastlane/Fastfileβ€Ž

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1+
# fastlane/Fastfile
12
default_platform(:ios)
23

34
platform :ios do
45
desc "개발 ν™˜κ²½ μ„ΈνŒ…"
56
lane :setup_development do
6-
match(type: "development", readonly: true)
7-
UI.success("πŸŽ‰ 개발 ν™˜κ²½ μ„€μ • μ™„λ£Œ! .xcworkspace νŒŒμΌμ„ μ—΄μ–΄μ£Όμ„Έμš”.")
7+
match(type: "development")
8+
UI.success("πŸŽ‰ 개발 ν™˜κ²½ μ„€μ • μ™„λ£Œ!")
89
end
910

1011
desc "App Store 배포 ν™˜κ²½ μ„ΈνŒ…"
1112
lane :setup_appstore do
12-
match(type: "appstore", readonly: true)
13+
match(type: "appstore")
1314
UI.success("πŸš€ App Store 배포 ν™˜κ²½ μ„€μ • μ™„λ£Œ!")
1415
end
1516
end

β€Žfastlane/Matchfileβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ git_url(ENV["MATCH_GIT_URL"])
77
type("development")
88

99
# 관리할 μ•±μ˜ Bundle Identifier
10-
# app_identifier(["com.jiwoo.EatSSU"])
10+
app_identifier(["com.jiwoo.EatSSU", "com.jiwoo.EatSSU.EatSSUwidget2025"])
11+
12+
api_key_path("api_key.json")

β€Žfastlane/README.mdβ€Ž

Lines changed: 0 additions & 40 deletions
This file was deleted.

β€Žfastlane/report.xmlβ€Ž

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
Β (0)