fastlane-plugin-wpmreleasetoolkit 14.8.0 → 14.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_prune_orphaned_translations_action.rb +144 -0
- data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_github_release_assets_action.rb +85 -0
- data/lib/fastlane/plugin/wpmreleasetoolkit/helper/github_helper.rb +72 -0
- data/lib/fastlane/plugin/wpmreleasetoolkit/version.rb +1 -1
- metadata +6 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1db5468c63b1d9cec762c5af38e8cb1e3b858214fb15d1a1d2fd3502da09b9cc
|
|
4
|
+
data.tar.gz: 9fc9c2104373e1161421e38a014af1b7a686a72747febc8284d7acca2b06ba25
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a984608e0fd91a036759a8700d663aca874af9105732f175c42fa97e4e75a2dca1daa0bbcfa0c79caf77ed4463ddc76a4eaf78a6c902220b0df060337a692a7d
|
|
7
|
+
data.tar.gz: f97d44bb69c2f8283c061f65d3dac7bffb15ea7fd849ee5f3b3db8795e2129d19b8ad4091871e144f7706f3796678b476c856c2fe01f8aaa8f25040f1cb329eb
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'fastlane/action'
|
|
4
|
+
require 'nokogiri'
|
|
5
|
+
|
|
6
|
+
module Fastlane
|
|
7
|
+
module Actions
|
|
8
|
+
class AndroidPruneOrphanedTranslationsAction < Action
|
|
9
|
+
# Matches an Android `values-<qualifier>` directory whose qualifier is a locale: a 2- or 3-letter language
|
|
10
|
+
# code (`fr`, `kmr`), an optional region (`pt-rBR`, `es-r419`), or a BCP-47 `b+` form (`b+sr+Latn`), so
|
|
11
|
+
# non-locale qualifier dirs (e.g. `values-night`, `values-v21`, `values-land`) are left untouched.
|
|
12
|
+
LOCALE_VALUES_DIR_REGEX = /\Avalues-(?:b\+[a-zA-Z]+(?:\+[a-zA-Z0-9]+)*|[a-z]{2,3}(?:-r(?:[A-Z]{2}|\d{3}))?)\z/
|
|
13
|
+
|
|
14
|
+
# Android UI-mode qualifiers, which are never locales:
|
|
15
|
+
# https://developer.android.com/guide/topics/resources/providing-resources#UiModeQualifier
|
|
16
|
+
# `car` is indistinguishable by shape from a 3-letter ISO 639 language code, so `LOCALE_VALUES_DIR_REGEX`
|
|
17
|
+
# would otherwise treat `values-car` as a locale and prune its (valid) car-mode resources. There's no purely
|
|
18
|
+
# syntactic way to tell the two apart, so we exclude the documented UI-mode qualifiers explicitly. (`car` is
|
|
19
|
+
# the only one short enough to currently match the regex; the rest are listed to capture the full set.)
|
|
20
|
+
UI_MODE_QUALIFIERS = %w[car desk television appliance watch vrheadset].freeze
|
|
21
|
+
|
|
22
|
+
DEFAULT_SOURCE_STRINGS_FILE_NAME = 'strings.xml'
|
|
23
|
+
DEFAULT_SOURCE_STRINGS_RELATIVE_PATH = File.join('values', DEFAULT_SOURCE_STRINGS_FILE_NAME).freeze
|
|
24
|
+
|
|
25
|
+
def self.run(params)
|
|
26
|
+
res_dir = params[:res_dir]
|
|
27
|
+
source_paths = [File.join(res_dir, DEFAULT_SOURCE_STRINGS_RELATIVE_PATH)] + params[:additional_source_strings_paths]
|
|
28
|
+
valid_keys = collect_keys(source_paths)
|
|
29
|
+
|
|
30
|
+
locale_files = Dir.glob(File.join(res_dir, 'values-*', DEFAULT_SOURCE_STRINGS_FILE_NAME)).select do |file|
|
|
31
|
+
dir_name = File.basename(File.dirname(file))
|
|
32
|
+
dir_name.match?(LOCALE_VALUES_DIR_REGEX) && !UI_MODE_QUALIFIERS.include?(dir_name.delete_prefix('values-'))
|
|
33
|
+
end
|
|
34
|
+
total_pruned = 0
|
|
35
|
+
|
|
36
|
+
locale_files.each do |file|
|
|
37
|
+
pruned = prune_file(file: file, valid_keys: valid_keys)
|
|
38
|
+
next if pruned.empty?
|
|
39
|
+
|
|
40
|
+
total_pruned += pruned.count
|
|
41
|
+
UI.message("Pruned #{pruned.count} orphaned entries from `#{file}`: #{pruned.join(', ')}")
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
UI.success("Pruned #{total_pruned} orphaned translation entries across #{locale_files.count} locale file(s).")
|
|
45
|
+
total_pruned
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# Collects the set of resource names (string, string-array, plurals, …) declared in the given strings files.
|
|
49
|
+
#
|
|
50
|
+
# @param [Array<String>] paths The strings.xml files to read the valid keys from.
|
|
51
|
+
# @return [Set<String>] The set of declared resource names.
|
|
52
|
+
def self.collect_keys(paths)
|
|
53
|
+
paths.each_with_object(Set.new) do |path, keys|
|
|
54
|
+
doc = File.open(path) { |f| Nokogiri::XML(f, nil, Encoding::UTF_8.to_s) }
|
|
55
|
+
doc.xpath('/resources/*[@name]').each { |node| keys << node['name'] }
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
# Removes from `file` any resource entry whose `name` is not in `valid_keys`, preserving the rest of the
|
|
60
|
+
# file's formatting (so the change shows up as a minimal diff).
|
|
61
|
+
#
|
|
62
|
+
# @param [String] file The locale strings.xml file to prune.
|
|
63
|
+
# @param [Set<String>] valid_keys The set of names that are allowed to remain.
|
|
64
|
+
# @return [Array<String>] The names of the entries that were pruned.
|
|
65
|
+
def self.prune_file(file:, valid_keys:)
|
|
66
|
+
doc = File.open(file) { |f| Nokogiri::XML(f, nil, Encoding::UTF_8.to_s) }
|
|
67
|
+
orphans = doc.xpath('/resources/*[@name]').reject { |node| valid_keys.include?(node['name']) }
|
|
68
|
+
return [] if orphans.empty?
|
|
69
|
+
|
|
70
|
+
names = orphans.map { |node| node['name'] }
|
|
71
|
+
orphans.each do |node|
|
|
72
|
+
# Drop the indentation/newline text node right before the element too, to avoid leaving a blank line.
|
|
73
|
+
previous = node.previous_sibling
|
|
74
|
+
previous.remove if previous&.text? && previous.text.strip.empty?
|
|
75
|
+
node.remove
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
File.open(file, 'w') { |f| doc.write_to(f, encoding: Encoding::UTF_8.to_s, indent: 4) }
|
|
79
|
+
names
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
#####################################################
|
|
83
|
+
# @!group Documentation
|
|
84
|
+
#####################################################
|
|
85
|
+
|
|
86
|
+
def self.description
|
|
87
|
+
'Removes translations whose keys are not present in the source strings, to avoid Lint `ExtraTranslation` errors'
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def self.details
|
|
91
|
+
<<~DETAILS
|
|
92
|
+
When downloading translations from GlotPress, the export may include keys that are no longer present in
|
|
93
|
+
the app's source strings (e.g. removed or renamed since the GlotPress source was last synced). Android
|
|
94
|
+
Lint flags these orphaned translations as `ExtraTranslation` errors.
|
|
95
|
+
|
|
96
|
+
This action removes — from every `values-*/strings.xml` under `res_dir` — any `<string>`, `<string-array>`
|
|
97
|
+
or `<plurals>` entry whose `name` is not declared in the default `values/strings.xml` of `res_dir`,
|
|
98
|
+
optionally unioned with `additional_source_strings_paths` (useful when a product flavor overlays a base
|
|
99
|
+
module's resources at build time, so the base module's keys are valid too).
|
|
100
|
+
DETAILS
|
|
101
|
+
end
|
|
102
|
+
|
|
103
|
+
def self.available_options
|
|
104
|
+
[
|
|
105
|
+
FastlaneCore::ConfigItem.new(
|
|
106
|
+
key: :res_dir,
|
|
107
|
+
description: "Path to the Android project's `res` directory containing the `values-*` locale subdirectories to prune",
|
|
108
|
+
type: String,
|
|
109
|
+
optional: false,
|
|
110
|
+
verify_block: proc do |value|
|
|
111
|
+
source_path = File.join(value, DEFAULT_SOURCE_STRINGS_RELATIVE_PATH)
|
|
112
|
+
UI.user_error!("Source strings file not found: `#{source_path}`") unless File.file?(source_path)
|
|
113
|
+
end
|
|
114
|
+
),
|
|
115
|
+
FastlaneCore::ConfigItem.new(
|
|
116
|
+
key: :additional_source_strings_paths,
|
|
117
|
+
description: 'Paths to additional default `strings.xml` files whose keys should also be treated as valid ' \
|
|
118
|
+
'(e.g. a base module that the pruned `res_dir` overlays at build time)',
|
|
119
|
+
type: Array,
|
|
120
|
+
optional: true,
|
|
121
|
+
default_value: [],
|
|
122
|
+
verify_block: proc do |value|
|
|
123
|
+
value.each do |path|
|
|
124
|
+
UI.user_error!("Source strings file not found: `#{path}`") unless File.file?(path)
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
),
|
|
128
|
+
]
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
def self.return_value
|
|
132
|
+
'The total number of orphaned translation entries that were pruned'
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
def self.authors
|
|
136
|
+
['Automattic']
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
def self.is_supported?(platform)
|
|
140
|
+
platform == :android
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
end
|
data/lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_github_release_assets_action.rb
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'fastlane/action'
|
|
4
|
+
require_relative '../../helper/github_helper'
|
|
5
|
+
|
|
6
|
+
module Fastlane
|
|
7
|
+
module Actions
|
|
8
|
+
class UploadGithubReleaseAssetsAction < Action
|
|
9
|
+
def self.run(params)
|
|
10
|
+
repository = params[:repository]
|
|
11
|
+
version = params[:version]
|
|
12
|
+
assets = params[:release_assets]
|
|
13
|
+
replace_existing = params[:replace_existing]
|
|
14
|
+
|
|
15
|
+
UI.message("Uploading #{assets.count} GitHub Release asset(s) to #{repository} #{version}.")
|
|
16
|
+
|
|
17
|
+
github_helper = Fastlane::Helper::GithubHelper.new(github_token: params[:github_token])
|
|
18
|
+
url = github_helper.upload_release_assets(
|
|
19
|
+
repository: repository,
|
|
20
|
+
version: version,
|
|
21
|
+
assets: assets,
|
|
22
|
+
replace_existing: replace_existing
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
UI.success("Successfully uploaded GitHub Release assets. You can see the release at '#{url}'")
|
|
26
|
+
url
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def self.description
|
|
30
|
+
'Uploads assets to an existing GitHub Release'
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def self.authors
|
|
34
|
+
['Automattic']
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
def self.return_value
|
|
38
|
+
'The URL of the GitHub Release'
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
def self.details
|
|
42
|
+
'Uploads assets to an existing GitHub Release. By default, existing release assets with matching filenames are replaced; when replace_existing is false, matching assets cause the action to fail.'
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def self.available_options
|
|
46
|
+
[
|
|
47
|
+
FastlaneCore::ConfigItem.new(key: :repository,
|
|
48
|
+
description: 'The slug (`<org>/<repo>`) of the GitHub repository containing the release',
|
|
49
|
+
optional: false,
|
|
50
|
+
type: String,
|
|
51
|
+
verify_block: proc do |value|
|
|
52
|
+
UI.user_error!('Repository cannot be empty') if value.to_s.empty?
|
|
53
|
+
end),
|
|
54
|
+
FastlaneCore::ConfigItem.new(key: :version,
|
|
55
|
+
description: 'The version of the release. Used as the git tag name',
|
|
56
|
+
optional: false,
|
|
57
|
+
type: String,
|
|
58
|
+
verify_block: proc do |value|
|
|
59
|
+
UI.user_error!('Version cannot be empty') if value.to_s.empty?
|
|
60
|
+
end),
|
|
61
|
+
FastlaneCore::ConfigItem.new(key: :release_assets,
|
|
62
|
+
description: 'Assets to upload',
|
|
63
|
+
type: Array,
|
|
64
|
+
optional: false,
|
|
65
|
+
verify_block: proc do |value|
|
|
66
|
+
UI.user_error!('You must provide at least one release asset') if value.nil? || value.empty?
|
|
67
|
+
value.each do |asset|
|
|
68
|
+
UI.user_error!('release_assets must contain file paths') unless asset.is_a?(String) && !asset.empty?
|
|
69
|
+
end
|
|
70
|
+
end),
|
|
71
|
+
FastlaneCore::ConfigItem.new(key: :replace_existing,
|
|
72
|
+
description: 'True to delete existing release assets with matching filenames before uploading. False to fail if a matching asset exists',
|
|
73
|
+
optional: true,
|
|
74
|
+
default_value: true,
|
|
75
|
+
type: Boolean),
|
|
76
|
+
Fastlane::Helper::GithubHelper.github_token_config_item,
|
|
77
|
+
]
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def self.is_supported?(platform)
|
|
81
|
+
true
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
end
|
|
@@ -192,6 +192,58 @@ module Fastlane
|
|
|
192
192
|
release[:html_url]
|
|
193
193
|
end
|
|
194
194
|
|
|
195
|
+
# Returns the GitHub release matching a given tag/version, including draft releases.
|
|
196
|
+
#
|
|
197
|
+
# @param [String] repository The repository to fetch the GitHub release from. Typically a repo slug (<org>/<repo>).
|
|
198
|
+
# @param [String] version The release version/tag to fetch.
|
|
199
|
+
# @return [Sawyer::Resource] The matching GitHub Release.
|
|
200
|
+
# @raise [Fastlane::UI::Error] UI.user_error! if the release does not exist.
|
|
201
|
+
#
|
|
202
|
+
def get_release(repository:, version:)
|
|
203
|
+
release = client.releases(repository).find { |candidate| candidate.tag_name == version }
|
|
204
|
+
return release unless release.nil?
|
|
205
|
+
|
|
206
|
+
UI.user_error!("Could not find GitHub Release for tag #{version} in #{repository}")
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
# Uploads assets to an existing GitHub release, optionally replacing matching filenames.
|
|
210
|
+
#
|
|
211
|
+
# @param [String] repository The repository to upload the GitHub release assets to. Typically a repo slug (<org>/<repo>).
|
|
212
|
+
# @param [String] version The release version/tag to upload assets to.
|
|
213
|
+
# @param [Array<String>] assets List of local file paths to attach as release assets.
|
|
214
|
+
# @param [TrueClass|FalseClass] replace_existing Delete existing same-filename assets before uploading. When false, fail if a matching asset exists.
|
|
215
|
+
# @return [String] URL of the corresponding GitHub Release.
|
|
216
|
+
# @raise [Fastlane::UI::Error] UI.user_error! if the release or any local asset file does not exist.
|
|
217
|
+
#
|
|
218
|
+
def upload_release_assets(repository:, version:, assets:, replace_existing: true)
|
|
219
|
+
asset_paths = validate_release_assets!(assets)
|
|
220
|
+
release = get_release(repository: repository, version: version)
|
|
221
|
+
existing_assets = client.release_assets(release.url)
|
|
222
|
+
|
|
223
|
+
asset_paths.each do |file_path|
|
|
224
|
+
file_name = File.basename(file_path)
|
|
225
|
+
matching_assets = existing_assets.select { |asset| asset.name == file_name }
|
|
226
|
+
|
|
227
|
+
unless matching_assets.empty?
|
|
228
|
+
if replace_existing
|
|
229
|
+
matching_assets.each do |asset|
|
|
230
|
+
UI.message("Deleting existing GitHub Release asset #{asset.name}")
|
|
231
|
+
client.delete_release_asset(asset.url)
|
|
232
|
+
end
|
|
233
|
+
existing_assets -= matching_assets
|
|
234
|
+
else
|
|
235
|
+
UI.user_error!("GitHub Release #{version} already has an asset named #{file_name}. Set replace_existing: true to replace it.")
|
|
236
|
+
end
|
|
237
|
+
end
|
|
238
|
+
|
|
239
|
+
UI.message("Uploading #{file_path} to GitHub Release #{version}")
|
|
240
|
+
uploaded_asset = client.upload_asset(release.url, file_path, content_type: 'application/octet-stream')
|
|
241
|
+
existing_assets << uploaded_asset unless uploaded_asset.nil?
|
|
242
|
+
end
|
|
243
|
+
|
|
244
|
+
release.html_url
|
|
245
|
+
end
|
|
246
|
+
|
|
195
247
|
# Use the GitHub API to generate release notes based on the list of PRs between current tag and previous tag.
|
|
196
248
|
# @note This API uses the `.github/release.yml` config file to classify the PRs by category in the generated list according to PR labels.
|
|
197
249
|
#
|
|
@@ -368,6 +420,26 @@ module Fastlane
|
|
|
368
420
|
client.protect_branch(repository, branch, options)
|
|
369
421
|
end
|
|
370
422
|
|
|
423
|
+
def validate_release_assets!(assets)
|
|
424
|
+
asset_paths = Array(assets)
|
|
425
|
+
UI.user_error!('You must provide at least one release asset') if asset_paths.empty?
|
|
426
|
+
|
|
427
|
+
asset_paths.each do |file_path|
|
|
428
|
+
UI.user_error!('release_assets must contain file paths') unless file_path.is_a?(String) && !file_path.empty?
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
file_names = asset_paths.map { |file_path| File.basename(file_path) }
|
|
432
|
+
UI.user_error!('release_assets must not contain duplicate filenames') if file_names.uniq.length != file_names.length
|
|
433
|
+
|
|
434
|
+
asset_paths.each do |file_path|
|
|
435
|
+
UI.user_error!("Can't find file #{file_path}!") unless File.file?(file_path)
|
|
436
|
+
end
|
|
437
|
+
|
|
438
|
+
asset_paths
|
|
439
|
+
end
|
|
440
|
+
|
|
441
|
+
private :validate_release_assets!
|
|
442
|
+
|
|
371
443
|
# Convert a response from the `/branch-protection` API endpoint into a Hash
|
|
372
444
|
# suitable to be returned and/or reused to pass to a subsequent `/branch-protection` API request
|
|
373
445
|
# @param [Sawyer::Resource] response The API response returned by `#get_branch_protection` or `#set_branch_protection`
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-wpmreleasetoolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 14.
|
|
4
|
+
version: 14.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Automattic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-07-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: buildkit
|
|
@@ -131,7 +131,7 @@ dependencies:
|
|
|
131
131
|
version: '1.19'
|
|
132
132
|
- - ">="
|
|
133
133
|
- !ruby/object:Gem::Version
|
|
134
|
-
version: 1.19.
|
|
134
|
+
version: 1.19.4
|
|
135
135
|
type: :runtime
|
|
136
136
|
prerelease: false
|
|
137
137
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -141,7 +141,7 @@ dependencies:
|
|
|
141
141
|
version: '1.19'
|
|
142
142
|
- - ">="
|
|
143
143
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: 1.19.
|
|
144
|
+
version: 1.19.4
|
|
145
145
|
- !ruby/object:Gem::Dependency
|
|
146
146
|
name: octokit
|
|
147
147
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -421,6 +421,7 @@ files:
|
|
|
421
421
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_download_translations_action.rb
|
|
422
422
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_firebase_test.rb
|
|
423
423
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_launch_emulator_action.rb
|
|
424
|
+
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_prune_orphaned_translations_action.rb
|
|
424
425
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_send_app_size_metrics.rb
|
|
425
426
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_shutdown_emulator_action.rb
|
|
426
427
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/android/android_update_release_notes.rb
|
|
@@ -455,6 +456,7 @@ files:
|
|
|
455
456
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/update_apps_cdn_build_metadata.rb
|
|
456
457
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/update_assigned_milestone_action.rb
|
|
457
458
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_build_to_apps_cdn.rb
|
|
459
|
+
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_github_release_assets_action.rb
|
|
458
460
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/common/upload_to_s3.rb
|
|
459
461
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/configure/configure_add_files_to_copy_action.rb
|
|
460
462
|
- lib/fastlane/plugin/wpmreleasetoolkit/actions/configure/configure_apply_action.rb
|