diff --git a/.github/workflows/bitgouel-ios-cd.yml b/.github/workflows/bitgouel-ios-cd.yml index f5dea7ad6..1574e6e16 100644 --- a/.github/workflows/bitgouel-ios-cd.yml +++ b/.github/workflows/bitgouel-ios-cd.yml @@ -10,7 +10,6 @@ on: [push] # description: 'Changes in this version' # required: true - env: KEYCHAIN: ${{ 'bitgouel-ios.keychain' }} diff --git a/App/Support/Info.plist b/App/Support/Info.plist index a34067633..24b5ad934 100644 --- a/App/Support/Info.plist +++ b/App/Support/Info.plist @@ -17,7 +17,7 @@ CFBundleShortVersionString 1.0.2 CFBundleVersion - 34 + 43 ITSAppUsesNonExemptEncryption LSRequiresIPhoneOS diff --git a/Bitgouel.app.dSYM.zip b/Bitgouel.app.dSYM.zip index bb63133a7..9624974f8 100644 Binary files a/Bitgouel.app.dSYM.zip and b/Bitgouel.app.dSYM.zip differ diff --git a/Bitgouel.ipa b/Bitgouel.ipa index 90bf30c4d..dedd71018 100644 Binary files a/Bitgouel.ipa and b/Bitgouel.ipa differ diff --git a/Service/Sources/Domain/SchoolDoamin/API/SchoolAPI.swift b/Service/Sources/Domain/SchoolDoamin/API/SchoolAPI.swift index 5220034c6..6b1a5cc92 100644 --- a/Service/Sources/Domain/SchoolDoamin/API/SchoolAPI.swift +++ b/Service/Sources/Domain/SchoolDoamin/API/SchoolAPI.swift @@ -40,7 +40,7 @@ extension SchoolAPI: BitgouelAPI { } } - public var errorMap: [Int : SchoolDomainError] { + public var errorMap: [Int: SchoolDomainError] { switch self { case .fetchSchoolList: return [ diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ddee2f308..633d5054d 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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( diff --git a/fastlane/Matchfile b/fastlane/Matchfile index c16e9f432..78cd6f199 100644 --- a/fastlane/Matchfile +++ b/fastlane/Matchfile @@ -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