eas-cli 0.42.3 → 0.44.1

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.
Files changed (57) hide show
  1. package/README.md +14 -788
  2. package/bin/dev +17 -0
  3. package/bin/dev.cmd +3 -0
  4. package/bin/run +4 -3
  5. package/build/build/android/UpdatesModule.d.ts +0 -1
  6. package/build/build/android/UpdatesModule.js +4 -37
  7. package/build/build/android/build.js +3 -3
  8. package/build/build/android/{configure.d.ts → syncProjectConfiguration.d.ts} +2 -3
  9. package/build/build/android/{configure.js → syncProjectConfiguration.js} +22 -23
  10. package/build/build/build.d.ts +1 -1
  11. package/build/build/build.js +6 -8
  12. package/build/build/configure.d.ts +12 -7
  13. package/build/build/configure.js +25 -99
  14. package/build/build/context.d.ts +0 -12
  15. package/build/build/createContext.d.ts +1 -2
  16. package/build/build/createContext.js +1 -2
  17. package/build/build/ios/UpdatesModule.d.ts +0 -1
  18. package/build/build/ios/UpdatesModule.js +8 -39
  19. package/build/build/ios/build.js +3 -3
  20. package/build/build/ios/{configure.d.ts → syncProjectConfiguration.d.ts} +1 -3
  21. package/build/build/ios/{configure.js → syncProjectConfiguration.js} +3 -18
  22. package/build/build/local.d.ts +1 -0
  23. package/build/build/local.js +2 -1
  24. package/build/build/runBuildAndSubmit.d.ts +0 -1
  25. package/build/build/runBuildAndSubmit.js +4 -2
  26. package/build/commands/branch/create.js +8 -3
  27. package/build/commands/branch/delete.js +8 -2
  28. package/build/commands/branch/list.js +5 -1
  29. package/build/commands/branch/rename.js +8 -3
  30. package/build/commands/branch/view.d.ts +0 -2
  31. package/build/commands/branch/view.js +32 -71
  32. package/build/commands/build/configure.js +43 -25
  33. package/build/commands/build/index.d.ts +1 -0
  34. package/build/commands/build/index.js +12 -2
  35. package/build/commands/build/inspect.d.ts +1 -0
  36. package/build/commands/build/inspect.js +23 -17
  37. package/build/commands/channel/create.js +21 -16
  38. package/build/commands/channel/delete.d.ts +15 -0
  39. package/build/commands/channel/delete.js +124 -0
  40. package/build/commands/channel/edit.js +10 -5
  41. package/build/commands/channel/list.js +14 -9
  42. package/build/commands/channel/rollout.js +8 -3
  43. package/build/commands/channel/view.js +16 -11
  44. package/build/commands/update/configure.js +1 -1
  45. package/build/commands/update/delete.js +9 -4
  46. package/build/commands/update/index.js +7 -3
  47. package/build/commands/update/list.d.ts +10 -0
  48. package/build/commands/update/list.js +114 -0
  49. package/build/commands/update/view.js +22 -17
  50. package/build/credentials/ios/appstore/bundleIdCapabilities.js +0 -2
  51. package/build/credentials/ios/appstore/ensureAppExists.js +3 -1
  52. package/build/graphql/generated.d.ts +92 -30
  53. package/build/graphql/queries/UpdateQuery.d.ts +7 -0
  54. package/build/graphql/queries/UpdateQuery.js +85 -0
  55. package/build/vcs/local.js +5 -1
  56. package/oclif.manifest.json +1 -1
  57. package/package.json +11 -8
package/README.md CHANGED
@@ -33,523 +33,37 @@ eas --help COMMAND
33
33
  # Commands
34
34
 
35
35
  <!-- commands -->
36
- * [`eas account:login`](#eas-accountlogin)
37
- * [`eas account:logout`](#eas-accountlogout)
38
- * [`eas account:view`](#eas-accountview)
39
- * [`eas analytics [STATUS]`](#eas-analytics-status)
40
- * [`eas branch:create [NAME]`](#eas-branchcreate-name)
41
- * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
42
- * [`eas branch:list`](#eas-branchlist)
43
- * [`eas branch:rename`](#eas-branchrename)
44
- * [`eas branch:view [NAME]`](#eas-branchview-name)
45
- * [`eas build`](#eas-build)
46
- * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
47
- * [`eas build:configure`](#eas-buildconfigure)
48
- * [`eas build:inspect`](#eas-buildinspect)
49
- * [`eas build:list`](#eas-buildlist)
50
- * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
51
- * [`eas channel:create [NAME]`](#eas-channelcreate-name)
52
- * [`eas channel:edit [NAME]`](#eas-channeledit-name)
53
- * [`eas channel:list`](#eas-channellist)
54
- * [`eas channel:view [NAME]`](#eas-channelview-name)
55
- * [`eas config`](#eas-config)
56
- * [`eas credentials`](#eas-credentials)
57
- * [`eas device:create`](#eas-devicecreate)
58
- * [`eas device:list`](#eas-devicelist)
59
- * [`eas device:view [UDID]`](#eas-deviceview-udid)
60
- * [`eas diagnostics`](#eas-diagnostics)
36
+ * [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
61
37
  * [`eas help [COMMAND]`](#eas-help-command)
62
- * [`eas project:info`](#eas-projectinfo)
63
- * [`eas project:init`](#eas-projectinit)
64
- * [`eas secret:create`](#eas-secretcreate)
65
- * [`eas secret:delete`](#eas-secretdelete)
66
- * [`eas secret:list`](#eas-secretlist)
67
- * [`eas submit`](#eas-submit)
68
- * [`eas update`](#eas-update)
69
- * [`eas update:configure`](#eas-updateconfigure)
70
- * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
71
- * [`eas update:view GROUPID`](#eas-updateview-groupid)
72
- * [`eas webhook:create`](#eas-webhookcreate)
73
- * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
74
- * [`eas webhook:list`](#eas-webhooklist)
75
- * [`eas webhook:update`](#eas-webhookupdate)
76
- * [`eas webhook:view ID`](#eas-webhookview-id)
77
38
 
78
- ## `eas account:login`
39
+ ## `eas autocomplete [SHELL]`
79
40
 
80
- log in with your Expo account
41
+ display autocomplete installation instructions
81
42
 
82
43
  ```
83
44
  USAGE
84
- $ eas account:login
85
-
86
- DESCRIPTION
87
- log in with your Expo account
88
-
89
- ALIASES
90
- $ eas login
91
- ```
92
-
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)_
94
-
95
- ## `eas account:logout`
96
-
97
- log out
98
-
99
- ```
100
- USAGE
101
- $ eas account:logout
102
-
103
- DESCRIPTION
104
- log out
105
-
106
- ALIASES
107
- $ eas logout
108
- ```
109
-
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)_
111
-
112
- ## `eas account:view`
113
-
114
- show the username you are logged in as
115
-
116
- ```
117
- USAGE
118
- $ eas account:view
119
-
120
- DESCRIPTION
121
- show the username you are logged in as
122
-
123
- ALIASES
124
- $ eas whoami
125
- ```
126
-
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)_
128
-
129
- ## `eas analytics [STATUS]`
130
-
131
- view or change analytics settings
132
-
133
- ```
134
- USAGE
135
- $ eas analytics [STATUS]
136
-
137
- DESCRIPTION
138
- view or change analytics settings
139
- ```
140
-
141
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/analytics.ts)_
142
-
143
- ## `eas branch:create [NAME]`
144
-
145
- Create a branch on the current project.
146
-
147
- ```
148
- USAGE
149
- $ eas branch:create [NAME] [--json]
45
+ $ eas autocomplete [SHELL] [-r]
150
46
 
151
47
  ARGUMENTS
152
- NAME Name of the branch to create
48
+ SHELL shell type
153
49
 
154
50
  FLAGS
155
- --json return a json with the new branch ID and name.
51
+ -r, --refresh-cache Refresh cache (ignores displaying instructions)
156
52
 
157
53
  DESCRIPTION
158
- Create a branch on the current project.
159
- ```
160
-
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)_
162
-
163
- ## `eas branch:delete [NAME]`
164
-
165
- Delete a branch on the current project
166
-
167
- ```
168
- USAGE
169
- $ eas branch:delete [NAME] [--json]
170
-
171
- ARGUMENTS
172
- NAME Name of the branch to delete
173
-
174
- FLAGS
175
- --json return JSON with the edited branch's ID and name.
176
-
177
- DESCRIPTION
178
- Delete a branch on the current project
179
- ```
180
-
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)_
54
+ display autocomplete installation instructions
182
55
 
183
- ## `eas branch:list`
184
-
185
- List all branches on this project.
186
-
187
- ```
188
- USAGE
189
- $ eas branch:list [--json]
190
-
191
- FLAGS
192
- --json return output as JSON
193
-
194
- DESCRIPTION
195
- List all branches on this project.
196
- ```
197
-
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)_
199
-
200
- ## `eas branch:rename`
201
-
202
- Rename a branch.
203
-
204
- ```
205
- USAGE
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.
212
-
213
- DESCRIPTION
214
- Rename a branch.
215
- ```
216
-
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)_
218
-
219
- ## `eas branch:view [NAME]`
220
-
221
- View a branch.
222
-
223
- ```
224
- USAGE
225
- $ eas branch:view [NAME] [--json]
226
-
227
- ARGUMENTS
228
- NAME Name of the branch to view
229
-
230
- FLAGS
231
- --json return a json with the branch's ID name and recent update groups.
232
-
233
- DESCRIPTION
234
- View a branch.
235
- ```
236
-
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)_
238
-
239
- ## `eas build`
240
-
241
- Start a build
242
-
243
- ```
244
- USAGE
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>]
247
-
248
- FLAGS
249
- -p, --platform=(android|ios|all)
250
- --auto-submit Submit on build complete using the submit profile with the same name as the
251
- build profile
252
- --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
253
- --clear-cache Clear cache before the build
254
- --json Enable JSON output, non-JSON messages will be printed to stderr
255
- --local Run build locally [experimental]
256
- --non-interactive Run command in non-interactive mode
257
- --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
258
- in eas.json.
259
- --skip-project-configuration Skip project configuration
260
- --[no-]wait Wait for build(s) to complete
261
-
262
- DESCRIPTION
263
- Start a build
264
- ```
265
-
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)_
267
-
268
- ## `eas build:cancel [BUILD_ID]`
269
-
270
- Cancel a build.
271
-
272
- ```
273
- USAGE
274
- $ eas build:cancel [BUILD_ID]
275
-
276
- DESCRIPTION
277
- Cancel a build.
278
- ```
56
+ EXAMPLES
57
+ $ eas autocomplete
279
58
 
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)_
59
+ $ eas autocomplete bash
281
60
 
282
- ## `eas build:configure`
61
+ $ eas autocomplete zsh
283
62
 
284
- Configure the project to support EAS Build.
285
-
286
- ```
287
- USAGE
288
- $ eas build:configure [-p android|ios|all]
289
-
290
- FLAGS
291
- -p, --platform=(android|ios|all) Platform to configure
292
-
293
- DESCRIPTION
294
- Configure the project to support EAS Build.
295
- ```
296
-
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)_
298
-
299
- ## `eas build:inspect`
300
-
301
- Inspect the state of the project at specific build stages. Useful for troubleshooting.
302
-
303
- ```
304
- USAGE
305
- $ eas build:inspect -p android|ios -s archive|pre-build|post-build --output <value> [--profile <value>] [--force]
306
- [--verbose]
307
-
308
- FLAGS
309
- -p, --platform=(android|ios)
310
- (required)
311
-
312
- -s, --stage=(archive|pre-build|post-build)
313
- (required) Stage of the build you want to inspect.
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
317
-
318
- --force
319
- Delete OUTPUT_DIRECTORY if it already exists.
320
-
321
- --output=OUTPUT_DIRECTORY
322
- (required) Output directory.
323
-
324
- --profile=PROFILE_NAME
325
- Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
326
-
327
- --verbose
328
-
329
- DESCRIPTION
330
- Inspect the state of the project at specific build stages. Useful for troubleshooting.
331
- ```
332
-
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)_
334
-
335
- ## `eas build:list`
336
-
337
- list all builds for your project
338
-
339
- ```
340
- USAGE
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>]
345
-
346
- FLAGS
347
- --appBuildVersion=<value>
348
- --appIdentifier=<value>
349
- --appVersion=<value>
350
- --buildProfile=<value>
351
- --channel=<value>
352
- --distribution=(store|internal|simulator)
353
- --gitCommitHash=<value>
354
- --json Enable JSON output, non-JSON messages will be printed
355
- to stderr
356
- --limit=<value>
357
- --platform=(all|android|ios)
358
- --runtimeVersion=<value>
359
- --sdkVersion=<value>
360
- --status=(new|in-queue|in-progress|errored|finished|canceled)
361
-
362
- DESCRIPTION
363
- list all builds for your project
364
- ```
365
-
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)_
367
-
368
- ## `eas build:view [BUILD_ID]`
369
-
370
- view a build for your project
371
-
372
- ```
373
- USAGE
374
- $ eas build:view [BUILD_ID] [--json]
375
-
376
- FLAGS
377
- --json Enable JSON output, non-JSON messages will be printed to stderr
378
-
379
- DESCRIPTION
380
- view a build for your project
381
- ```
382
-
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)_
384
-
385
- ## `eas channel:create [NAME]`
386
-
387
- Create a channel on the current project.
388
-
389
- ```
390
- USAGE
391
- $ eas channel:create [NAME] [--json]
392
-
393
- ARGUMENTS
394
- NAME Name of the channel to create
395
-
396
- FLAGS
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.
401
- ```
402
-
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)_
404
-
405
- ## `eas channel:edit [NAME]`
406
-
407
- Point a channel at a new branch.
408
-
409
- ```
410
- USAGE
411
- $ eas channel:edit [NAME] [--branch <value>] [--json]
412
-
413
- ARGUMENTS
414
- NAME Name of the channel to edit
415
-
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.
422
- ```
423
-
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)_
425
-
426
- ## `eas channel:list`
427
-
428
- List all channels on the current project.
429
-
430
- ```
431
- USAGE
432
- $ eas channel:list [--json]
433
-
434
- FLAGS
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.
439
- ```
440
-
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)_
442
-
443
- ## `eas channel:view [NAME]`
444
-
445
- View a channel on the current project.
446
-
447
- ```
448
- USAGE
449
- $ eas channel:view [NAME] [--json]
450
-
451
- ARGUMENTS
452
- NAME Name of the channel to view
453
-
454
- FLAGS
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.
459
- ```
460
-
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)_
462
-
463
- ## `eas config`
464
-
465
- show the eas.json config
466
-
467
- ```
468
- USAGE
469
- $ eas config [-p android|ios] [--profile <value>]
470
-
471
- FLAGS
472
- -p, --platform=(android|ios)
473
- --profile=<value>
474
-
475
- DESCRIPTION
476
- show the eas.json config
63
+ $ eas autocomplete --refresh-cache
477
64
  ```
478
65
 
479
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/config.ts)_
480
-
481
- ## `eas credentials`
482
-
483
- manage your credentials
484
-
485
- ```
486
- USAGE
487
- $ eas credentials
488
-
489
- DESCRIPTION
490
- manage your credentials
491
- ```
492
-
493
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/credentials.ts)_
494
-
495
- ## `eas device:create`
496
-
497
- register new Apple Devices to use for internal distribution
498
-
499
- ```
500
- USAGE
501
- $ eas device:create
502
-
503
- DESCRIPTION
504
- register new Apple Devices to use for internal distribution
505
- ```
506
-
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)_
508
-
509
- ## `eas device:list`
510
-
511
- list all registered devices for your account
512
-
513
- ```
514
- USAGE
515
- $ eas device:list [--apple-team-id <value>]
516
-
517
- FLAGS
518
- --apple-team-id=<value>
519
-
520
- DESCRIPTION
521
- list all registered devices for your account
522
- ```
523
-
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)_
525
-
526
- ## `eas device:view [UDID]`
527
-
528
- view a device for your project
529
-
530
- ```
531
- USAGE
532
- $ eas device:view [UDID]
533
-
534
- DESCRIPTION
535
- view a device for your project
536
- ```
537
-
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)_
539
-
540
- ## `eas diagnostics`
541
-
542
- log environment info to the console
543
-
544
- ```
545
- USAGE
546
- $ eas diagnostics
547
-
548
- DESCRIPTION
549
- log environment info to the console
550
- ```
551
-
552
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/diagnostics.ts)_
66
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.1.1/src/commands/autocomplete/index.ts)_
553
67
 
554
68
  ## `eas help [COMMAND]`
555
69
 
@@ -569,293 +83,5 @@ DESCRIPTION
569
83
  Display help for eas.
570
84
  ```
571
85
 
572
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.9/src/commands/help.ts)_
573
-
574
- ## `eas project:info`
575
-
576
- information about the current project
577
-
578
- ```
579
- USAGE
580
- $ eas project:info
581
-
582
- DESCRIPTION
583
- information about the current project
584
- ```
585
-
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)_
587
-
588
- ## `eas project:init`
589
-
590
- create or link an EAS project
591
-
592
- ```
593
- USAGE
594
- $ eas project:init
595
-
596
- DESCRIPTION
597
- create or link an EAS project
598
-
599
- ALIASES
600
- $ eas init
601
- ```
602
-
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)_
604
-
605
- ## `eas secret:create`
606
-
607
- Create an environment secret on the current project or owner account.
608
-
609
- ```
610
- USAGE
611
- $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
612
-
613
- FLAGS
614
- --force Delete and recreate existing secrets
615
- --name=<value> Name of the secret
616
- --scope=(account|project) [default: project] Scope for the secret
617
- --value=<value> Value of the secret
618
-
619
- DESCRIPTION
620
- Create an environment secret on the current project or owner account.
621
- ```
622
-
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)_
624
-
625
- ## `eas secret:delete`
626
-
627
- Delete an environment secret by ID.
628
-
629
- ```
630
- USAGE
631
- $ eas secret:delete [--id <value>]
632
-
633
- FLAGS
634
- --id=<value> ID of the secret to delete
635
-
636
- DESCRIPTION
637
- Delete an environment secret by ID.
638
-
639
- Unsure where to find the secret's ID? Run eas secret:list
640
- ```
641
-
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)_
643
-
644
- ## `eas secret:list`
645
-
646
- Lists environment secrets available for your current app
647
-
648
- ```
649
- USAGE
650
- $ eas secret:list
651
-
652
- DESCRIPTION
653
- Lists environment secrets available for your current app
654
- ```
655
-
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)_
657
-
658
- ## `eas submit`
659
-
660
- Submit build archive to App Store Connect
661
-
662
- ```
663
- USAGE
664
- $ eas submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
665
- <value>] [--verbose] [--wait] [--non-interactive]
666
-
667
- FLAGS
668
- -p, --platform=(android|ios|all)
669
- --id=<value> ID of the build to submit
670
- --latest Submit the latest build for specified platform
671
- --non-interactive Run command in non-interactive mode
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
674
- eas.json.
675
- --url=<value> App archive url
676
- --verbose Always print logs from Submission Service
677
- --[no-]wait Wait for submission to complete
678
-
679
- DESCRIPTION
680
- Submit build archive to App Store Connect
681
-
682
- See how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/
683
-
684
- ALIASES
685
- $ eas build:submit
686
- ```
687
-
688
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/submit.ts)_
689
-
690
- ## `eas update`
691
-
692
- Publish an update group.
693
-
694
- ```
695
- USAGE
696
- $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
697
- [--group <value> | | ] [-p android|ios|all] [--json] [--auto]
698
-
699
- FLAGS
700
- -p, --platform=(android|ios|all) [default: all]
701
- --auto Use the current git branch and commit message for the EAS branch and update message
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
705
- --json Enable JSON output, non-JSON messages will be printed to stderr
706
- --message=<value> A short message describing the update
707
- --republish Republish an update group
708
- --skip-bundler Skip running Expo CLI to bundle the app before publishing
709
-
710
- DESCRIPTION
711
- Publish an update group.
712
- ```
713
-
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)_
715
-
716
- ## `eas update:configure`
717
-
718
- Configure the project to support EAS Update.
719
-
720
- ```
721
- USAGE
722
- $ eas update:configure
723
-
724
- DESCRIPTION
725
- Configure the project to support EAS Update.
726
- ```
727
-
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)_
729
-
730
- ## `eas update:delete GROUPID`
731
-
732
- Delete all the updates in an update Group.
733
-
734
- ```
735
- USAGE
736
- $ eas update:delete [GROUPID] [--json]
737
-
738
- ARGUMENTS
739
- GROUPID The ID of an update group to delete.
740
-
741
- FLAGS
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.
746
- ```
747
-
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)_
749
-
750
- ## `eas update:view GROUPID`
751
-
752
- Update group details.
753
-
754
- ```
755
- USAGE
756
- $ eas update:view [GROUPID] [--json]
757
-
758
- ARGUMENTS
759
- GROUPID The ID of an update group.
760
-
761
- FLAGS
762
- --json Return a json with the updates belonging to the group.
763
-
764
- DESCRIPTION
765
- Update group details.
766
- ```
767
-
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)_
769
-
770
- ## `eas webhook:create`
771
-
772
- Create a webhook on the current project.
773
-
774
- ```
775
- USAGE
776
- $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
777
-
778
- FLAGS
779
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
780
- --secret=<value> Secret used to create a hash signature of the request payload, provided in the
781
- 'Expo-Signature' header.
782
- --url=<value> Webhook URL
783
-
784
- DESCRIPTION
785
- Create a webhook on the current project.
786
- ```
787
-
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)_
789
-
790
- ## `eas webhook:delete [ID]`
791
-
792
- Delete a webhook on the current project.
793
-
794
- ```
795
- USAGE
796
- $ eas webhook:delete [ID]
797
-
798
- ARGUMENTS
799
- ID ID of the webhook to delete
800
-
801
- DESCRIPTION
802
- Delete a webhook on the current project.
803
- ```
804
-
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)_
806
-
807
- ## `eas webhook:list`
808
-
809
- List webhooks on the current project.
810
-
811
- ```
812
- USAGE
813
- $ eas webhook:list [--event BUILD|SUBMIT]
814
-
815
- FLAGS
816
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
817
-
818
- DESCRIPTION
819
- List webhooks on the current project.
820
- ```
821
-
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)_
823
-
824
- ## `eas webhook:update`
825
-
826
- Create a webhook on the current project.
827
-
828
- ```
829
- USAGE
830
- $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
831
-
832
- FLAGS
833
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
834
- --id=<value> (required) Webhook ID
835
- --secret=<value> Secret used to create a hash signature of the request payload, provided in the
836
- 'Expo-Signature' header.
837
- --url=<value> Webhook URL
838
-
839
- DESCRIPTION
840
- Create a webhook on the current project.
841
- ```
842
-
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)_
844
-
845
- ## `eas webhook:view ID`
846
-
847
- View a webhook on the current project.
848
-
849
- ```
850
- USAGE
851
- $ eas webhook:view [ID]
852
-
853
- ARGUMENTS
854
- ID ID of the webhook to view
855
-
856
- DESCRIPTION
857
- View a webhook on the current project.
858
- ```
859
-
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)_
86
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.10/src/commands/help.ts)_
861
87
  <!-- commandsstop -->