Skip to content

Commit

Permalink
wip - ios pipeline sec keychain err
Browse files Browse the repository at this point in the history
  • Loading branch information
igez committed Dec 9, 2024
1 parent 582a2c9 commit 341f399
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions ios/App/fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
default_platform(:ios)

fastlane_require 'dotenv'

before_all do
Dotenv.overload '../../../.env'
end

platform :ios do
team_id = CredentialsManager::AppfileConfig.try_fetch_value(:team_id)
app_identifier = CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)
Expand All @@ -9,10 +15,15 @@ platform :ios do
env_vars: [
'KEYCHAIN_PASSWORD',
'MATCH_PASSWORD',
# 'MATCH_REPO_PASSWORD',
'MATCH_REPO_PASSWORD',
]
)

unlock_keychain(
path: "login.keychain-db",
password: ENV["KEYCHAIN_PASSWORD"]
)

match(
type: "appstore",
app_identifier: app_identifier,
Expand All @@ -32,7 +43,7 @@ platform :ios do
include_bitcode: false,
export_method: "app-store",
clean: true,
output_name: "ets-mobile-capacitor.ipa",
output_name: "belair.ipa",
)
end

Expand Down

0 comments on commit 341f399

Please sign in to comment.