Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use xcodes in all ios fastlane lanes #3378

Merged
merged 1 commit into from
Feb 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ platform :ios do
is_key_content_base64: true
)

xcodes(version: "15.3", select_for_current_build_only: true)
upload_to_testflight(
ipa: "./Blink.ipa",
changelog: "No changelog"
Expand All @@ -81,6 +82,7 @@ platform :ios do
is_key_content_base64: true
)

xcodes(version: "15.3", select_for_current_build_only: true)
upload_to_testflight(
app_platform: "ios",
distribute_only: true,
Expand All @@ -103,6 +105,7 @@ platform :ios do
is_key_content_base64: true
)

xcodes(version: "15.3", select_for_current_build_only: true)
upload_to_app_store(
platform: "ios",
skip_binary_upload: true,
Expand Down Expand Up @@ -134,7 +137,7 @@ platform :ios do

desc "Build for end to end tests"
lane :build_e2e do
xcode_select("/Applications/Xcode-14.2.app")
xcodes(version: "15.3", select_for_current_build_only: true)
match(type: "appstore", readonly: is_ci)
gym(scheme: "GaloyApp", include_bitcode: false)
end
Expand Down
Loading