Skip to content

Commit

Permalink
fix: specify team id in fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
vaind committed Oct 10, 2022
1 parent 56e60b9 commit e1f088f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions metrics/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ platform :ios do
include_bitcode: false,
include_symbols: false,
export_method: "development",
export_team_id: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
output_name: "test-app-plain.ipa",
skip_build_archive: true,
archive_path: "perf-test-app-plain/build/ios/archive/Runner.xcarchive",
Expand All @@ -36,14 +37,15 @@ platform :ios do
)

build_app(
workspace: "perf-test-app-sentry/ios/Runner.xcworkspace",
workspace: "perf-test-app-with-sentry/ios/Runner.xcworkspace",
scheme: "Runner",
include_bitcode: false,
include_symbols: false,
export_method: "development",
export_team_id: CredentialsManager::AppfileConfig.try_fetch_value(:team_id),
output_name: "test-app-sentry.ipa",
skip_build_archive: true,
archive_path: "perf-test-app-sentry/build/ios/archive/Runner.xcarchive",
archive_path: "perf-test-app-with-sentry/build/ios/archive/Runner.xcarchive",
)

delete_keychain(name: "fastlane_tmp_keychain") unless is_ci
Expand Down

0 comments on commit e1f088f

Please sign in to comment.