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