eas-cli 0.41.1 → 0.42.3
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.
- package/README.md +258 -153
- package/bin/run +3 -4
- package/build/build/configure.js +3 -3
- package/build/build/local.js +1 -1
- package/build/build/utils/devClient.js +3 -3
- package/build/commandUtils/EasCommand.d.ts +2 -1
- package/build/commandUtils/EasCommand.js +7 -4
- package/build/commands/account/login.d.ts +1 -0
- package/build/commands/account/login.js +1 -0
- package/build/commands/account/logout.d.ts +1 -0
- package/build/commands/account/logout.js +1 -0
- package/build/commands/account/view.d.ts +1 -0
- package/build/commands/account/view.js +1 -0
- package/build/commands/analytics.js +1 -1
- package/build/commands/branch/create.d.ts +1 -1
- package/build/commands/branch/create.js +3 -3
- package/build/commands/branch/delete.d.ts +1 -1
- package/build/commands/branch/delete.js +3 -3
- package/build/commands/branch/list.d.ts +1 -1
- package/build/commands/branch/list.js +3 -3
- package/build/commands/branch/rename.d.ts +3 -4
- package/build/commands/branch/rename.js +5 -5
- package/build/commands/branch/view.d.ts +1 -1
- package/build/commands/branch/view.js +3 -3
- package/build/commands/build/cancel.js +1 -1
- package/build/commands/build/configure.d.ts +1 -2
- package/build/commands/build/configure.js +3 -3
- package/build/commands/build/index.d.ts +11 -12
- package/build/commands/build/index.js +20 -19
- package/build/commands/build/inspect.d.ts +6 -7
- package/build/commands/build/inspect.js +8 -8
- package/build/commands/build/list.d.ts +13 -14
- package/build/commands/build/list.js +15 -15
- package/build/commands/build/view.d.ts +1 -1
- package/build/commands/build/view.js +3 -3
- package/build/commands/channel/create.d.ts +1 -1
- package/build/commands/channel/create.js +3 -3
- package/build/commands/channel/edit.d.ts +2 -3
- package/build/commands/channel/edit.js +4 -4
- package/build/commands/channel/list.d.ts +1 -1
- package/build/commands/channel/list.js +3 -3
- package/build/commands/channel/rollout.d.ts +4 -5
- package/build/commands/channel/rollout.js +6 -7
- package/build/commands/channel/view.d.ts +1 -1
- package/build/commands/channel/view.js +3 -3
- package/build/commands/config.d.ts +2 -3
- package/build/commands/config.js +4 -4
- package/build/commands/device/list.d.ts +1 -2
- package/build/commands/device/list.js +3 -3
- package/build/commands/device/view.js +1 -1
- package/build/commands/secret/create.d.ts +4 -5
- package/build/commands/secret/create.js +6 -6
- package/build/commands/secret/delete.d.ts +1 -2
- package/build/commands/secret/delete.js +3 -3
- package/build/commands/submit.d.ts +9 -10
- package/build/commands/submit.js +13 -14
- package/build/commands/update/delete.d.ts +1 -1
- package/build/commands/update/delete.js +3 -3
- package/build/commands/update/index.d.ts +9 -10
- package/build/commands/update/index.js +22 -14
- package/build/commands/update/view.d.ts +1 -1
- package/build/commands/update/view.js +3 -3
- package/build/commands/webhook/create.d.ts +3 -4
- package/build/commands/webhook/create.js +5 -5
- package/build/commands/webhook/delete.js +1 -1
- package/build/commands/webhook/list.d.ts +1 -2
- package/build/commands/webhook/list.js +3 -3
- package/build/commands/webhook/update.d.ts +4 -5
- package/build/commands/webhook/update.js +6 -6
- package/build/commands/webhook/view.js +1 -1
- package/build/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/build/project/expoSdk.js +2 -2
- package/build/project/metroConfig.js +2 -2
- package/build/project/publish.js +1 -3
- package/build/user/actions.js +2 -2
- package/build/utils/expoCli.d.ts +3 -1
- package/build/utils/expoCli.js +13 -11
- package/build/vcs/clients/git.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +16 -12
package/README.md
CHANGED
|
@@ -83,11 +83,14 @@ log in with your Expo account
|
|
|
83
83
|
USAGE
|
|
84
84
|
$ eas account:login
|
|
85
85
|
|
|
86
|
+
DESCRIPTION
|
|
87
|
+
log in with your Expo account
|
|
88
|
+
|
|
86
89
|
ALIASES
|
|
87
90
|
$ eas login
|
|
88
91
|
```
|
|
89
92
|
|
|
90
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
93
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/login.ts)_
|
|
91
94
|
|
|
92
95
|
## `eas account:logout`
|
|
93
96
|
|
|
@@ -97,11 +100,14 @@ log out
|
|
|
97
100
|
USAGE
|
|
98
101
|
$ eas account:logout
|
|
99
102
|
|
|
103
|
+
DESCRIPTION
|
|
104
|
+
log out
|
|
105
|
+
|
|
100
106
|
ALIASES
|
|
101
107
|
$ eas logout
|
|
102
108
|
```
|
|
103
109
|
|
|
104
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
110
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/logout.ts)_
|
|
105
111
|
|
|
106
112
|
## `eas account:view`
|
|
107
113
|
|
|
@@ -111,11 +117,14 @@ show the username you are logged in as
|
|
|
111
117
|
USAGE
|
|
112
118
|
$ eas account:view
|
|
113
119
|
|
|
120
|
+
DESCRIPTION
|
|
121
|
+
show the username you are logged in as
|
|
122
|
+
|
|
114
123
|
ALIASES
|
|
115
124
|
$ eas whoami
|
|
116
125
|
```
|
|
117
126
|
|
|
118
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
127
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/view.ts)_
|
|
119
128
|
|
|
120
129
|
## `eas analytics [STATUS]`
|
|
121
130
|
|
|
@@ -124,9 +133,12 @@ view or change analytics settings
|
|
|
124
133
|
```
|
|
125
134
|
USAGE
|
|
126
135
|
$ eas analytics [STATUS]
|
|
136
|
+
|
|
137
|
+
DESCRIPTION
|
|
138
|
+
view or change analytics settings
|
|
127
139
|
```
|
|
128
140
|
|
|
129
|
-
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
141
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/analytics.ts)_
|
|
130
142
|
|
|
131
143
|
## `eas branch:create [NAME]`
|
|
132
144
|
|
|
@@ -134,16 +146,19 @@ Create a branch on the current project.
|
|
|
134
146
|
|
|
135
147
|
```
|
|
136
148
|
USAGE
|
|
137
|
-
$ eas branch:create [NAME]
|
|
149
|
+
$ eas branch:create [NAME] [--json]
|
|
138
150
|
|
|
139
151
|
ARGUMENTS
|
|
140
152
|
NAME Name of the branch to create
|
|
141
153
|
|
|
142
|
-
|
|
154
|
+
FLAGS
|
|
143
155
|
--json return a json with the new branch ID and name.
|
|
156
|
+
|
|
157
|
+
DESCRIPTION
|
|
158
|
+
Create a branch on the current project.
|
|
144
159
|
```
|
|
145
160
|
|
|
146
|
-
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
161
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/create.ts)_
|
|
147
162
|
|
|
148
163
|
## `eas branch:delete [NAME]`
|
|
149
164
|
|
|
@@ -151,16 +166,19 @@ Delete a branch on the current project
|
|
|
151
166
|
|
|
152
167
|
```
|
|
153
168
|
USAGE
|
|
154
|
-
$ eas branch:delete [NAME]
|
|
169
|
+
$ eas branch:delete [NAME] [--json]
|
|
155
170
|
|
|
156
171
|
ARGUMENTS
|
|
157
172
|
NAME Name of the branch to delete
|
|
158
173
|
|
|
159
|
-
|
|
174
|
+
FLAGS
|
|
160
175
|
--json return JSON with the edited branch's ID and name.
|
|
176
|
+
|
|
177
|
+
DESCRIPTION
|
|
178
|
+
Delete a branch on the current project
|
|
161
179
|
```
|
|
162
180
|
|
|
163
|
-
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
181
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
164
182
|
|
|
165
183
|
## `eas branch:list`
|
|
166
184
|
|
|
@@ -168,13 +186,16 @@ List all branches on this project.
|
|
|
168
186
|
|
|
169
187
|
```
|
|
170
188
|
USAGE
|
|
171
|
-
$ eas branch:list
|
|
189
|
+
$ eas branch:list [--json]
|
|
172
190
|
|
|
173
|
-
|
|
191
|
+
FLAGS
|
|
174
192
|
--json return output as JSON
|
|
193
|
+
|
|
194
|
+
DESCRIPTION
|
|
195
|
+
List all branches on this project.
|
|
175
196
|
```
|
|
176
197
|
|
|
177
|
-
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
198
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/list.ts)_
|
|
178
199
|
|
|
179
200
|
## `eas branch:rename`
|
|
180
201
|
|
|
@@ -182,15 +203,18 @@ Rename a branch.
|
|
|
182
203
|
|
|
183
204
|
```
|
|
184
205
|
USAGE
|
|
185
|
-
$ eas branch:rename
|
|
206
|
+
$ eas branch:rename [--from <value>] [--to <value>] [--json]
|
|
207
|
+
|
|
208
|
+
FLAGS
|
|
209
|
+
--from=<value> current name of the branch.
|
|
210
|
+
--json return a json with the edited branch's ID and name.
|
|
211
|
+
--to=<value> new name of the branch.
|
|
186
212
|
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
--json return a json with the edited branch's ID and name.
|
|
190
|
-
--to=to new name of the branch.
|
|
213
|
+
DESCRIPTION
|
|
214
|
+
Rename a branch.
|
|
191
215
|
```
|
|
192
216
|
|
|
193
|
-
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
217
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
194
218
|
|
|
195
219
|
## `eas branch:view [NAME]`
|
|
196
220
|
|
|
@@ -198,16 +222,19 @@ View a branch.
|
|
|
198
222
|
|
|
199
223
|
```
|
|
200
224
|
USAGE
|
|
201
|
-
$ eas branch:view [NAME]
|
|
225
|
+
$ eas branch:view [NAME] [--json]
|
|
202
226
|
|
|
203
227
|
ARGUMENTS
|
|
204
228
|
NAME Name of the branch to view
|
|
205
229
|
|
|
206
|
-
|
|
230
|
+
FLAGS
|
|
207
231
|
--json return a json with the branch's ID name and recent update groups.
|
|
232
|
+
|
|
233
|
+
DESCRIPTION
|
|
234
|
+
View a branch.
|
|
208
235
|
```
|
|
209
236
|
|
|
210
|
-
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
237
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/view.ts)_
|
|
211
238
|
|
|
212
239
|
## `eas build`
|
|
213
240
|
|
|
@@ -215,33 +242,28 @@ Start a build
|
|
|
215
242
|
|
|
216
243
|
```
|
|
217
244
|
USAGE
|
|
218
|
-
$ eas build
|
|
245
|
+
$ eas build [-p android|ios|all] [--json] [--skip-project-configuration] [--profile <value>]
|
|
246
|
+
[--non-interactive] [--local] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>]
|
|
219
247
|
|
|
220
|
-
|
|
248
|
+
FLAGS
|
|
221
249
|
-p, --platform=(android|ios|all)
|
|
222
|
-
|
|
223
250
|
--auto-submit Submit on build complete using the submit profile with the same name as the
|
|
224
251
|
build profile
|
|
225
|
-
|
|
226
252
|
--auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
|
|
227
|
-
|
|
228
253
|
--clear-cache Clear cache before the build
|
|
229
|
-
|
|
230
254
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
231
|
-
|
|
232
255
|
--local Run build locally [experimental]
|
|
233
|
-
|
|
234
256
|
--non-interactive Run command in non-interactive mode
|
|
235
|
-
|
|
236
257
|
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
237
258
|
in eas.json.
|
|
238
|
-
|
|
239
259
|
--skip-project-configuration Skip project configuration
|
|
240
|
-
|
|
241
260
|
--[no-]wait Wait for build(s) to complete
|
|
261
|
+
|
|
262
|
+
DESCRIPTION
|
|
263
|
+
Start a build
|
|
242
264
|
```
|
|
243
265
|
|
|
244
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
266
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/index.ts)_
|
|
245
267
|
|
|
246
268
|
## `eas build:cancel [BUILD_ID]`
|
|
247
269
|
|
|
@@ -250,9 +272,12 @@ Cancel a build.
|
|
|
250
272
|
```
|
|
251
273
|
USAGE
|
|
252
274
|
$ eas build:cancel [BUILD_ID]
|
|
275
|
+
|
|
276
|
+
DESCRIPTION
|
|
277
|
+
Cancel a build.
|
|
253
278
|
```
|
|
254
279
|
|
|
255
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
280
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
256
281
|
|
|
257
282
|
## `eas build:configure`
|
|
258
283
|
|
|
@@ -260,13 +285,16 @@ Configure the project to support EAS Build.
|
|
|
260
285
|
|
|
261
286
|
```
|
|
262
287
|
USAGE
|
|
263
|
-
$ eas build:configure
|
|
288
|
+
$ eas build:configure [-p android|ios|all]
|
|
264
289
|
|
|
265
|
-
|
|
290
|
+
FLAGS
|
|
266
291
|
-p, --platform=(android|ios|all) Platform to configure
|
|
292
|
+
|
|
293
|
+
DESCRIPTION
|
|
294
|
+
Configure the project to support EAS Build.
|
|
267
295
|
```
|
|
268
296
|
|
|
269
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
297
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/configure.ts)_
|
|
270
298
|
|
|
271
299
|
## `eas build:inspect`
|
|
272
300
|
|
|
@@ -274,17 +302,18 @@ Inspect the state of the project at specific build stages. Useful for troublesho
|
|
|
274
302
|
|
|
275
303
|
```
|
|
276
304
|
USAGE
|
|
277
|
-
$ eas build:inspect
|
|
305
|
+
$ eas build:inspect -p android|ios -s archive|pre-build|post-build --output <value> [--profile <value>] [--force]
|
|
306
|
+
[--verbose]
|
|
278
307
|
|
|
279
|
-
|
|
308
|
+
FLAGS
|
|
280
309
|
-p, --platform=(android|ios)
|
|
281
310
|
(required)
|
|
282
311
|
|
|
283
312
|
-s, --stage=(archive|pre-build|post-build)
|
|
284
313
|
(required) Stage of the build you want to inspect.
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
314
|
+
archive - builds the project archive that would be uploaded to EAS when building
|
|
315
|
+
pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
|
|
316
|
+
post-build - builds the native project and leaves the output directory for inspection
|
|
288
317
|
|
|
289
318
|
--force
|
|
290
319
|
Delete OUTPUT_DIRECTORY if it already exists.
|
|
@@ -296,9 +325,12 @@ OPTIONS
|
|
|
296
325
|
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
297
326
|
|
|
298
327
|
--verbose
|
|
328
|
+
|
|
329
|
+
DESCRIPTION
|
|
330
|
+
Inspect the state of the project at specific build stages. Useful for troubleshooting.
|
|
299
331
|
```
|
|
300
332
|
|
|
301
|
-
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
333
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
302
334
|
|
|
303
335
|
## `eas build:list`
|
|
304
336
|
|
|
@@ -306,32 +338,32 @@ list all builds for your project
|
|
|
306
338
|
|
|
307
339
|
```
|
|
308
340
|
USAGE
|
|
309
|
-
$ eas build:list
|
|
341
|
+
$ eas build:list [--platform all|android|ios] [--json] [--status
|
|
342
|
+
new|in-queue|in-progress|errored|finished|canceled] [--distribution store|internal|simulator] [--channel <value>]
|
|
343
|
+
[--appVersion <value>] [--appBuildVersion <value>] [--sdkVersion <value>] [--runtimeVersion <value>]
|
|
344
|
+
[--appIdentifier <value>] [--buildProfile <value>] [--gitCommitHash <value>] [--limit <value>]
|
|
310
345
|
|
|
311
|
-
|
|
312
|
-
--appBuildVersion
|
|
313
|
-
--appIdentifier
|
|
314
|
-
--appVersion
|
|
315
|
-
--buildProfile
|
|
316
|
-
--channel
|
|
346
|
+
FLAGS
|
|
347
|
+
--appBuildVersion=<value>
|
|
348
|
+
--appIdentifier=<value>
|
|
349
|
+
--appVersion=<value>
|
|
350
|
+
--buildProfile=<value>
|
|
351
|
+
--channel=<value>
|
|
317
352
|
--distribution=(store|internal|simulator)
|
|
318
|
-
--gitCommitHash
|
|
319
|
-
|
|
353
|
+
--gitCommitHash=<value>
|
|
320
354
|
--json Enable JSON output, non-JSON messages will be printed
|
|
321
355
|
to stderr
|
|
322
|
-
|
|
323
|
-
--limit=limit
|
|
324
|
-
|
|
356
|
+
--limit=<value>
|
|
325
357
|
--platform=(all|android|ios)
|
|
326
|
-
|
|
327
|
-
--
|
|
328
|
-
|
|
329
|
-
--sdkVersion=sdkVersion
|
|
330
|
-
|
|
358
|
+
--runtimeVersion=<value>
|
|
359
|
+
--sdkVersion=<value>
|
|
331
360
|
--status=(new|in-queue|in-progress|errored|finished|canceled)
|
|
361
|
+
|
|
362
|
+
DESCRIPTION
|
|
363
|
+
list all builds for your project
|
|
332
364
|
```
|
|
333
365
|
|
|
334
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
366
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/list.ts)_
|
|
335
367
|
|
|
336
368
|
## `eas build:view [BUILD_ID]`
|
|
337
369
|
|
|
@@ -339,13 +371,16 @@ view a build for your project
|
|
|
339
371
|
|
|
340
372
|
```
|
|
341
373
|
USAGE
|
|
342
|
-
$ eas build:view [BUILD_ID]
|
|
374
|
+
$ eas build:view [BUILD_ID] [--json]
|
|
343
375
|
|
|
344
|
-
|
|
376
|
+
FLAGS
|
|
345
377
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
378
|
+
|
|
379
|
+
DESCRIPTION
|
|
380
|
+
view a build for your project
|
|
346
381
|
```
|
|
347
382
|
|
|
348
|
-
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
383
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/view.ts)_
|
|
349
384
|
|
|
350
385
|
## `eas channel:create [NAME]`
|
|
351
386
|
|
|
@@ -353,16 +388,19 @@ Create a channel on the current project.
|
|
|
353
388
|
|
|
354
389
|
```
|
|
355
390
|
USAGE
|
|
356
|
-
$ eas channel:create [NAME]
|
|
391
|
+
$ eas channel:create [NAME] [--json]
|
|
357
392
|
|
|
358
393
|
ARGUMENTS
|
|
359
394
|
NAME Name of the channel to create
|
|
360
395
|
|
|
361
|
-
|
|
396
|
+
FLAGS
|
|
362
397
|
--json print output as a JSON object with the new channel ID, name and branch mapping.
|
|
398
|
+
|
|
399
|
+
DESCRIPTION
|
|
400
|
+
Create a channel on the current project.
|
|
363
401
|
```
|
|
364
402
|
|
|
365
|
-
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
403
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/create.ts)_
|
|
366
404
|
|
|
367
405
|
## `eas channel:edit [NAME]`
|
|
368
406
|
|
|
@@ -370,17 +408,20 @@ Point a channel at a new branch.
|
|
|
370
408
|
|
|
371
409
|
```
|
|
372
410
|
USAGE
|
|
373
|
-
$ eas channel:edit [NAME]
|
|
411
|
+
$ eas channel:edit [NAME] [--branch <value>] [--json]
|
|
374
412
|
|
|
375
413
|
ARGUMENTS
|
|
376
414
|
NAME Name of the channel to edit
|
|
377
415
|
|
|
378
|
-
|
|
379
|
-
--branch
|
|
380
|
-
--json
|
|
416
|
+
FLAGS
|
|
417
|
+
--branch=<value> Name of the branch to point to
|
|
418
|
+
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
419
|
+
|
|
420
|
+
DESCRIPTION
|
|
421
|
+
Point a channel at a new branch.
|
|
381
422
|
```
|
|
382
423
|
|
|
383
|
-
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
424
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
384
425
|
|
|
385
426
|
## `eas channel:list`
|
|
386
427
|
|
|
@@ -388,13 +429,16 @@ List all channels on the current project.
|
|
|
388
429
|
|
|
389
430
|
```
|
|
390
431
|
USAGE
|
|
391
|
-
$ eas channel:list
|
|
432
|
+
$ eas channel:list [--json]
|
|
392
433
|
|
|
393
|
-
|
|
434
|
+
FLAGS
|
|
394
435
|
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
436
|
+
|
|
437
|
+
DESCRIPTION
|
|
438
|
+
List all channels on the current project.
|
|
395
439
|
```
|
|
396
440
|
|
|
397
|
-
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
441
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/list.ts)_
|
|
398
442
|
|
|
399
443
|
## `eas channel:view [NAME]`
|
|
400
444
|
|
|
@@ -402,16 +446,19 @@ View a channel on the current project.
|
|
|
402
446
|
|
|
403
447
|
```
|
|
404
448
|
USAGE
|
|
405
|
-
$ eas channel:view [NAME]
|
|
449
|
+
$ eas channel:view [NAME] [--json]
|
|
406
450
|
|
|
407
451
|
ARGUMENTS
|
|
408
452
|
NAME Name of the channel to view
|
|
409
453
|
|
|
410
|
-
|
|
454
|
+
FLAGS
|
|
411
455
|
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
456
|
+
|
|
457
|
+
DESCRIPTION
|
|
458
|
+
View a channel on the current project.
|
|
412
459
|
```
|
|
413
460
|
|
|
414
|
-
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
461
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/view.ts)_
|
|
415
462
|
|
|
416
463
|
## `eas config`
|
|
417
464
|
|
|
@@ -419,14 +466,17 @@ show the eas.json config
|
|
|
419
466
|
|
|
420
467
|
```
|
|
421
468
|
USAGE
|
|
422
|
-
$ eas config
|
|
469
|
+
$ eas config [-p android|ios] [--profile <value>]
|
|
423
470
|
|
|
424
|
-
|
|
471
|
+
FLAGS
|
|
425
472
|
-p, --platform=(android|ios)
|
|
426
|
-
--profile
|
|
473
|
+
--profile=<value>
|
|
474
|
+
|
|
475
|
+
DESCRIPTION
|
|
476
|
+
show the eas.json config
|
|
427
477
|
```
|
|
428
478
|
|
|
429
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
479
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/config.ts)_
|
|
430
480
|
|
|
431
481
|
## `eas credentials`
|
|
432
482
|
|
|
@@ -435,9 +485,12 @@ manage your credentials
|
|
|
435
485
|
```
|
|
436
486
|
USAGE
|
|
437
487
|
$ eas credentials
|
|
488
|
+
|
|
489
|
+
DESCRIPTION
|
|
490
|
+
manage your credentials
|
|
438
491
|
```
|
|
439
492
|
|
|
440
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
493
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/credentials.ts)_
|
|
441
494
|
|
|
442
495
|
## `eas device:create`
|
|
443
496
|
|
|
@@ -446,9 +499,12 @@ register new Apple Devices to use for internal distribution
|
|
|
446
499
|
```
|
|
447
500
|
USAGE
|
|
448
501
|
$ eas device:create
|
|
502
|
+
|
|
503
|
+
DESCRIPTION
|
|
504
|
+
register new Apple Devices to use for internal distribution
|
|
449
505
|
```
|
|
450
506
|
|
|
451
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
507
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/create.ts)_
|
|
452
508
|
|
|
453
509
|
## `eas device:list`
|
|
454
510
|
|
|
@@ -456,13 +512,16 @@ list all registered devices for your account
|
|
|
456
512
|
|
|
457
513
|
```
|
|
458
514
|
USAGE
|
|
459
|
-
$ eas device:list
|
|
515
|
+
$ eas device:list [--apple-team-id <value>]
|
|
516
|
+
|
|
517
|
+
FLAGS
|
|
518
|
+
--apple-team-id=<value>
|
|
460
519
|
|
|
461
|
-
|
|
462
|
-
|
|
520
|
+
DESCRIPTION
|
|
521
|
+
list all registered devices for your account
|
|
463
522
|
```
|
|
464
523
|
|
|
465
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
524
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/list.ts)_
|
|
466
525
|
|
|
467
526
|
## `eas device:view [UDID]`
|
|
468
527
|
|
|
@@ -471,9 +530,12 @@ view a device for your project
|
|
|
471
530
|
```
|
|
472
531
|
USAGE
|
|
473
532
|
$ eas device:view [UDID]
|
|
533
|
+
|
|
534
|
+
DESCRIPTION
|
|
535
|
+
view a device for your project
|
|
474
536
|
```
|
|
475
537
|
|
|
476
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
538
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/view.ts)_
|
|
477
539
|
|
|
478
540
|
## `eas diagnostics`
|
|
479
541
|
|
|
@@ -482,26 +544,32 @@ log environment info to the console
|
|
|
482
544
|
```
|
|
483
545
|
USAGE
|
|
484
546
|
$ eas diagnostics
|
|
547
|
+
|
|
548
|
+
DESCRIPTION
|
|
549
|
+
log environment info to the console
|
|
485
550
|
```
|
|
486
551
|
|
|
487
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
552
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
488
553
|
|
|
489
554
|
## `eas help [COMMAND]`
|
|
490
555
|
|
|
491
|
-
|
|
556
|
+
Display help for eas.
|
|
492
557
|
|
|
493
558
|
```
|
|
494
559
|
USAGE
|
|
495
|
-
$ eas help [COMMAND]
|
|
560
|
+
$ eas help [COMMAND] [-n]
|
|
496
561
|
|
|
497
562
|
ARGUMENTS
|
|
498
|
-
COMMAND
|
|
563
|
+
COMMAND Command to show help for.
|
|
564
|
+
|
|
565
|
+
FLAGS
|
|
566
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
499
567
|
|
|
500
|
-
|
|
501
|
-
|
|
568
|
+
DESCRIPTION
|
|
569
|
+
Display help for eas.
|
|
502
570
|
```
|
|
503
571
|
|
|
504
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/
|
|
572
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.9/src/commands/help.ts)_
|
|
505
573
|
|
|
506
574
|
## `eas project:info`
|
|
507
575
|
|
|
@@ -510,9 +578,12 @@ information about the current project
|
|
|
510
578
|
```
|
|
511
579
|
USAGE
|
|
512
580
|
$ eas project:info
|
|
581
|
+
|
|
582
|
+
DESCRIPTION
|
|
583
|
+
information about the current project
|
|
513
584
|
```
|
|
514
585
|
|
|
515
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
586
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/project/info.ts)_
|
|
516
587
|
|
|
517
588
|
## `eas project:init`
|
|
518
589
|
|
|
@@ -522,11 +593,14 @@ create or link an EAS project
|
|
|
522
593
|
USAGE
|
|
523
594
|
$ eas project:init
|
|
524
595
|
|
|
596
|
+
DESCRIPTION
|
|
597
|
+
create or link an EAS project
|
|
598
|
+
|
|
525
599
|
ALIASES
|
|
526
600
|
$ eas init
|
|
527
601
|
```
|
|
528
602
|
|
|
529
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
603
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/project/init.ts)_
|
|
530
604
|
|
|
531
605
|
## `eas secret:create`
|
|
532
606
|
|
|
@@ -534,16 +608,19 @@ Create an environment secret on the current project or owner account.
|
|
|
534
608
|
|
|
535
609
|
```
|
|
536
610
|
USAGE
|
|
537
|
-
$ eas secret:create
|
|
611
|
+
$ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
|
|
538
612
|
|
|
539
|
-
|
|
613
|
+
FLAGS
|
|
540
614
|
--force Delete and recreate existing secrets
|
|
541
|
-
--name
|
|
615
|
+
--name=<value> Name of the secret
|
|
542
616
|
--scope=(account|project) [default: project] Scope for the secret
|
|
543
|
-
--value
|
|
617
|
+
--value=<value> Value of the secret
|
|
618
|
+
|
|
619
|
+
DESCRIPTION
|
|
620
|
+
Create an environment secret on the current project or owner account.
|
|
544
621
|
```
|
|
545
622
|
|
|
546
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
623
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/create.ts)_
|
|
547
624
|
|
|
548
625
|
## `eas secret:delete`
|
|
549
626
|
|
|
@@ -551,16 +628,18 @@ Delete an environment secret by ID.
|
|
|
551
628
|
|
|
552
629
|
```
|
|
553
630
|
USAGE
|
|
554
|
-
$ eas secret:delete
|
|
631
|
+
$ eas secret:delete [--id <value>]
|
|
555
632
|
|
|
556
|
-
|
|
557
|
-
--id
|
|
633
|
+
FLAGS
|
|
634
|
+
--id=<value> ID of the secret to delete
|
|
558
635
|
|
|
559
636
|
DESCRIPTION
|
|
637
|
+
Delete an environment secret by ID.
|
|
638
|
+
|
|
560
639
|
Unsure where to find the secret's ID? Run eas secret:list
|
|
561
640
|
```
|
|
562
641
|
|
|
563
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
642
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
564
643
|
|
|
565
644
|
## `eas secret:list`
|
|
566
645
|
|
|
@@ -569,9 +648,12 @@ Lists environment secrets available for your current app
|
|
|
569
648
|
```
|
|
570
649
|
USAGE
|
|
571
650
|
$ eas secret:list
|
|
651
|
+
|
|
652
|
+
DESCRIPTION
|
|
653
|
+
Lists environment secrets available for your current app
|
|
572
654
|
```
|
|
573
655
|
|
|
574
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
656
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/list.ts)_
|
|
575
657
|
|
|
576
658
|
## `eas submit`
|
|
577
659
|
|
|
@@ -579,32 +661,31 @@ Submit build archive to App Store Connect
|
|
|
579
661
|
|
|
580
662
|
```
|
|
581
663
|
USAGE
|
|
582
|
-
$ eas submit
|
|
664
|
+
$ eas submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
|
|
665
|
+
<value>] [--verbose] [--wait] [--non-interactive]
|
|
583
666
|
|
|
584
|
-
|
|
667
|
+
FLAGS
|
|
585
668
|
-p, --platform=(android|ios|all)
|
|
586
|
-
--id
|
|
669
|
+
--id=<value> ID of the build to submit
|
|
587
670
|
--latest Submit the latest build for specified platform
|
|
588
671
|
--non-interactive Run command in non-interactive mode
|
|
589
|
-
--path
|
|
590
|
-
|
|
591
|
-
--profile=profile Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
672
|
+
--path=<value> Path to the .apk/.aab/.ipa file
|
|
673
|
+
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
592
674
|
eas.json.
|
|
593
|
-
|
|
594
|
-
--url=url App archive url
|
|
595
|
-
|
|
675
|
+
--url=<value> App archive url
|
|
596
676
|
--verbose Always print logs from Submission Service
|
|
597
|
-
|
|
598
677
|
--[no-]wait Wait for submission to complete
|
|
599
678
|
|
|
600
679
|
DESCRIPTION
|
|
680
|
+
Submit build archive to App Store Connect
|
|
681
|
+
|
|
601
682
|
See how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/
|
|
602
683
|
|
|
603
684
|
ALIASES
|
|
604
685
|
$ eas build:submit
|
|
605
686
|
```
|
|
606
687
|
|
|
607
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
688
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/submit.ts)_
|
|
608
689
|
|
|
609
690
|
## `eas update`
|
|
610
691
|
|
|
@@ -612,21 +693,25 @@ Publish an update group.
|
|
|
612
693
|
|
|
613
694
|
```
|
|
614
695
|
USAGE
|
|
615
|
-
$ eas update
|
|
696
|
+
$ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
|
|
697
|
+
[--group <value> | | ] [-p android|ios|all] [--json] [--auto]
|
|
616
698
|
|
|
617
|
-
|
|
699
|
+
FLAGS
|
|
618
700
|
-p, --platform=(android|ios|all) [default: all]
|
|
619
701
|
--auto Use the current git branch and commit message for the EAS branch and update message
|
|
620
|
-
--branch
|
|
621
|
-
--group
|
|
622
|
-
--input-dir
|
|
702
|
+
--branch=<value> Branch to publish the update group on
|
|
703
|
+
--group=<value> Update group to republish
|
|
704
|
+
--input-dir=<value> [default: dist] Location of the bundle
|
|
623
705
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
624
|
-
--message
|
|
706
|
+
--message=<value> A short message describing the update
|
|
625
707
|
--republish Republish an update group
|
|
626
708
|
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
709
|
+
|
|
710
|
+
DESCRIPTION
|
|
711
|
+
Publish an update group.
|
|
627
712
|
```
|
|
628
713
|
|
|
629
|
-
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
714
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/index.ts)_
|
|
630
715
|
|
|
631
716
|
## `eas update:configure`
|
|
632
717
|
|
|
@@ -635,9 +720,12 @@ Configure the project to support EAS Update.
|
|
|
635
720
|
```
|
|
636
721
|
USAGE
|
|
637
722
|
$ eas update:configure
|
|
723
|
+
|
|
724
|
+
DESCRIPTION
|
|
725
|
+
Configure the project to support EAS Update.
|
|
638
726
|
```
|
|
639
727
|
|
|
640
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
728
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/configure.ts)_
|
|
641
729
|
|
|
642
730
|
## `eas update:delete GROUPID`
|
|
643
731
|
|
|
@@ -645,16 +733,19 @@ Delete all the updates in an update Group.
|
|
|
645
733
|
|
|
646
734
|
```
|
|
647
735
|
USAGE
|
|
648
|
-
$ eas update:delete GROUPID
|
|
736
|
+
$ eas update:delete [GROUPID] [--json]
|
|
649
737
|
|
|
650
738
|
ARGUMENTS
|
|
651
739
|
GROUPID The ID of an update group to delete.
|
|
652
740
|
|
|
653
|
-
|
|
741
|
+
FLAGS
|
|
654
742
|
--json Return a json with the group ID of the deleted updates.
|
|
743
|
+
|
|
744
|
+
DESCRIPTION
|
|
745
|
+
Delete all the updates in an update Group.
|
|
655
746
|
```
|
|
656
747
|
|
|
657
|
-
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
748
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/delete.ts)_
|
|
658
749
|
|
|
659
750
|
## `eas update:view GROUPID`
|
|
660
751
|
|
|
@@ -662,16 +753,19 @@ Update group details.
|
|
|
662
753
|
|
|
663
754
|
```
|
|
664
755
|
USAGE
|
|
665
|
-
$ eas update:view GROUPID
|
|
756
|
+
$ eas update:view [GROUPID] [--json]
|
|
666
757
|
|
|
667
758
|
ARGUMENTS
|
|
668
759
|
GROUPID The ID of an update group.
|
|
669
760
|
|
|
670
|
-
|
|
761
|
+
FLAGS
|
|
671
762
|
--json Return a json with the updates belonging to the group.
|
|
763
|
+
|
|
764
|
+
DESCRIPTION
|
|
765
|
+
Update group details.
|
|
672
766
|
```
|
|
673
767
|
|
|
674
|
-
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
768
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/view.ts)_
|
|
675
769
|
|
|
676
770
|
## `eas webhook:create`
|
|
677
771
|
|
|
@@ -679,18 +773,19 @@ Create a webhook on the current project.
|
|
|
679
773
|
|
|
680
774
|
```
|
|
681
775
|
USAGE
|
|
682
|
-
$ eas webhook:create
|
|
776
|
+
$ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
683
777
|
|
|
684
|
-
|
|
778
|
+
FLAGS
|
|
685
779
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
686
|
-
|
|
687
|
-
--secret=secret Secret used to create a hash signature of the request payload, provided in the
|
|
780
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
688
781
|
'Expo-Signature' header.
|
|
782
|
+
--url=<value> Webhook URL
|
|
689
783
|
|
|
690
|
-
|
|
784
|
+
DESCRIPTION
|
|
785
|
+
Create a webhook on the current project.
|
|
691
786
|
```
|
|
692
787
|
|
|
693
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
788
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
694
789
|
|
|
695
790
|
## `eas webhook:delete [ID]`
|
|
696
791
|
|
|
@@ -702,9 +797,12 @@ USAGE
|
|
|
702
797
|
|
|
703
798
|
ARGUMENTS
|
|
704
799
|
ID ID of the webhook to delete
|
|
800
|
+
|
|
801
|
+
DESCRIPTION
|
|
802
|
+
Delete a webhook on the current project.
|
|
705
803
|
```
|
|
706
804
|
|
|
707
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
805
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
708
806
|
|
|
709
807
|
## `eas webhook:list`
|
|
710
808
|
|
|
@@ -712,13 +810,16 @@ List webhooks on the current project.
|
|
|
712
810
|
|
|
713
811
|
```
|
|
714
812
|
USAGE
|
|
715
|
-
$ eas webhook:list
|
|
813
|
+
$ eas webhook:list [--event BUILD|SUBMIT]
|
|
716
814
|
|
|
717
|
-
|
|
815
|
+
FLAGS
|
|
718
816
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
817
|
+
|
|
818
|
+
DESCRIPTION
|
|
819
|
+
List webhooks on the current project.
|
|
719
820
|
```
|
|
720
821
|
|
|
721
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
822
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
722
823
|
|
|
723
824
|
## `eas webhook:update`
|
|
724
825
|
|
|
@@ -726,19 +827,20 @@ Create a webhook on the current project.
|
|
|
726
827
|
|
|
727
828
|
```
|
|
728
829
|
USAGE
|
|
729
|
-
$ eas webhook:update
|
|
830
|
+
$ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
730
831
|
|
|
731
|
-
|
|
832
|
+
FLAGS
|
|
732
833
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
733
|
-
--id
|
|
734
|
-
|
|
735
|
-
--secret=secret Secret used to create a hash signature of the request payload, provided in the
|
|
834
|
+
--id=<value> (required) Webhook ID
|
|
835
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
736
836
|
'Expo-Signature' header.
|
|
837
|
+
--url=<value> Webhook URL
|
|
737
838
|
|
|
738
|
-
|
|
839
|
+
DESCRIPTION
|
|
840
|
+
Create a webhook on the current project.
|
|
739
841
|
```
|
|
740
842
|
|
|
741
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
843
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
742
844
|
|
|
743
845
|
## `eas webhook:view ID`
|
|
744
846
|
|
|
@@ -746,11 +848,14 @@ View a webhook on the current project.
|
|
|
746
848
|
|
|
747
849
|
```
|
|
748
850
|
USAGE
|
|
749
|
-
$ eas webhook:view ID
|
|
851
|
+
$ eas webhook:view [ID]
|
|
750
852
|
|
|
751
853
|
ARGUMENTS
|
|
752
854
|
ID ID of the webhook to view
|
|
855
|
+
|
|
856
|
+
DESCRIPTION
|
|
857
|
+
View a webhook on the current project.
|
|
753
858
|
```
|
|
754
859
|
|
|
755
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
860
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
756
861
|
<!-- commandsstop -->
|