Skip to content

Commit

Permalink
💚 :: match 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
uuuunseo committed Jul 2, 2024
1 parent d8af53f commit 5f6c912
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/bitgouel-ios-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on: [push]
# description: 'Changes in this version'
# required: true


env:
KEYCHAIN: ${{ 'bitgouel-ios.keychain' }}

Expand Down
2 changes: 1 addition & 1 deletion App/Support/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<key>CFBundleVersion</key>
<string>34</string>
<string>43</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>
Expand Down
Binary file modified Bitgouel.app.dSYM.zip
Binary file not shown.
Binary file modified Bitgouel.ipa
Binary file not shown.
2 changes: 1 addition & 1 deletion Service/Sources/Domain/SchoolDoamin/API/SchoolAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ extension SchoolAPI: BitgouelAPI {
}
}

public var errorMap: [Int : SchoolDomainError] {
public var errorMap: [Int: SchoolDomainError] {
switch self {
case .fetchSchoolList:
return [
Expand Down
10 changes: 8 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,16 @@ platform :ios do
set_info_plist_value(path: "./App/Support/Info.plist", key: "CFBundleShortVersionString", value: version)

match(
git_url: "https://github.com/uuuunseo/match.git",
git_url: ENV["FASTLANE_GIT_URL"],
storage_mode: "git",
type: "appstore",
readonly: true,
readonly: true
)

sync_code_signing(
type: "appstore",
app_identifier: ENV["APP_IDENTIFIER"],
readonly: true
)

build_app(
Expand Down
6 changes: 3 additions & 3 deletions fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
git_url("https://github.com/uuuunseo/match")
git_url("https://github.com/School-of-Company/Bitgouel-Match-iOS")

storage_mode("git")

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

# app_identifier(ENV["APP_IDENTIFIER"])
# username(ENV["APPLE_Is"]) # Your Apple Developer Portal username
app_identifier(ENV["APP_IDENTIFIER"])
username(ENV["APPLE_ID"]) # Your Apple Developer Portal username

# 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 5f6c912

Please sign in to comment.