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 fastlane installation for promotion #3129

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ jobs:
- restore_yarn_cache
- restore_yarn_tools_cache
- restore_ruby_cache:
directory: native
directory: native/android
- run:
command: bundle exec fastlane android playstore_promote build_config_name:<< parameters.build_config_name >>
name: '[FL] Google PlayStore Promotion'
Expand Down Expand Up @@ -932,7 +932,7 @@ jobs:
- restore_yarn_tools_cache
- restore_yarn_cache
- restore_ruby_cache:
directory: native
directory: native/ios
- run:
command: bundle exec fastlane ios appstoreconnect_promote build_config_name:<< parameters.build_config_name >>
name: '[FL] Apple AppStoreConnect Promotion'
Expand Down
2 changes: 1 addition & 1 deletion .circleci/src/jobs/promote_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ steps:
- restore_yarn_cache # Needed for babel-node run in util.rb. May be refactored and optimized later.
- restore_yarn_tools_cache
- restore_ruby_cache:
directory: native
directory: native/android
- run:
name: '[FL] Google PlayStore Promotion'
command: bundle exec fastlane android playstore_promote build_config_name:<< parameters.build_config_name >>
Expand Down
2 changes: 1 addition & 1 deletion .circleci/src/jobs/promote_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
- restore_yarn_tools_cache
- restore_yarn_cache # Needed for babel-node run in util.rb. May be refactored and optimized later.
- restore_ruby_cache:
directory: native
directory: native/ios
- run:
name: '[FL] Apple AppStoreConnect Promotion'
command: bundle exec fastlane ios appstoreconnect_promote build_config_name:<< parameters.build_config_name >>
Expand Down
2 changes: 1 addition & 1 deletion native/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ platform :ios do
raise "'nil' passed as parameter! Aborting..."
end

`yarn --cwd ../../tools manage-metadata prepare-metadata #{build_config_name} appstore --override-version-name #{version_name}`
`yarn --cwd ../../../tools manage-metadata prepare-metadata #{build_config_name} appstore --override-version-name #{version_name}`
end

# The following parameters have to be passed:
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"versionName":"2025.2.4","versionCode":100042414}
{"versionName":"2025.2.5","versionCode":100042415}