54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
# File 'lib/fastlane/plugin/codepush/actions/codepush_release_react_action.rb', line 54
def self.available_options
[
FastlaneCore::ConfigItem.new(
key: :app_name,
env_name: "APP_CENTER_APP_NAME",
description: "Name of the App Center app, optional if ENV['APP_CENTER_APP_NAME'] is set",
optional: false,
type: String
),
FastlaneCore::ConfigItem.new(
key: :execution_dir_path,
description: 'Release React CLI command execution dir path',
optional: true,
type: String,
default_value: "./"
),
FastlaneCore::ConfigItem.new(
key: :target_binary_version,
description: 'Store/binary version of the app you are releasing the update for',
optional: true,
type: String,
),
FastlaneCore::ConfigItem.new(
key: :deployment_name,
description: 'Deployment name',
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :output_dir,
description: 'Output directory',
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :sourcemap_output,
description: "Relative path to where the generated JS bundle's source map file should be written",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :plist_file_prefix,
description: "File name prefix of the Info.plist file",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :plist_file,
description: "Relative path to the Info.plist file",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :gradle_file,
description: "Relative path to the build.gradle file",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :description,
description: "An optional change log for the deployment",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :mandatory,
description: "Specify whether the update should be considered mandatory or not",
optional: true,
is_string: false,
default_value: false
),
FastlaneCore::ConfigItem.new(
key: :disabled,
description: "Specify whether the update should be downloadable by end users or not",
optional: true,
is_string: false,
default_value: false
),
FastlaneCore::ConfigItem.new(
key: :rollout_percentage,
description: "Percentage of users that should be eligible to receive this update",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :disable_duplicate_release_error,
description: "Specify whether duplicate release error should be disabled or not",
optional: true,
is_string: false,
default_value: false
),
FastlaneCore::ConfigItem.new(
key: :disable_telemetry,
description: "Specify whether telemetry should be disabled or not",
optional: true,
is_string: false,
default_value: false
),
FastlaneCore::ConfigItem.new(
key: :version,
description: "version",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :private_key_path,
description: "Relative path to private key",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :entry_file,
description: "Relative path to the app's root/entry JavaScript file",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :development,
description: "Specify whether to generate an unminified, development JS bundle",
optional: true,
is_string: false,
default_value: false
),
FastlaneCore::ConfigItem.new(
key: :bundle_name,
description: "File name that should be used for the generated JS bundle",
optional: true,
type: String
),
FastlaneCore::ConfigItem.new(
key: :dry_run,
description: "Print the command that would be run, and don't run it",
is_string: false,
default_value: false
)
]
end
|