File tree Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Expand file tree Collapse file tree 2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 126
126
commit_message : "Update #{ app_values [ :display_name ] } `PlayStoreStrings.po` for version #{ version } "
127
127
)
128
128
end
129
-
130
- push_to_git_remote ( tags : false )
131
-
132
- release_branch = "release/#{ version } "
133
- create_release_management_pull_request ( release_branch , "Merge #{ version } editorialized release notes to #{ release_branch } " )
134
129
end
135
130
136
131
# Updates the metadata in the Play Store (Main store listing) from the content of `fastlane/{metadata|jetpack_metadata}/android/*/*.txt` files
Original file line number Diff line number Diff line change 1
1
BUILDKITE_ORGANIZATION = 'automattic' . freeze
2
2
BUILDKITE_PIPELINE = 'wordpress-android' . freeze
3
+
4
+ import 'lanes/localization.rb'
5
+
3
6
platform :android do
7
+ #####################################################################################
8
+ # Temporary Release Management in CI Lanes
9
+ #####################################################################################
10
+ lane :update_appstore_strings_in_ci do |options |
11
+ update_appstore_strings ( options )
12
+
13
+ push_to_git_remote ( tags : false )
14
+
15
+ version = options . fetch ( :version , android_get_app_version )
16
+ release_branch = "release/#{ version } "
17
+ create_release_management_pull_request ( release_branch , "Merge #{ version } editorialized release notes to #{ release_branch } " )
18
+ end
19
+
4
20
#####################################################################################
5
21
# Triggers for Buildkite
6
22
#####################################################################################
You can’t perform that action at this time.
0 commit comments