eas-cli 3.1.0 → 3.1.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.
package/README.md CHANGED
@@ -55,8 +55,130 @@ eas --help COMMAND
55
55
  # Commands
56
56
 
57
57
  <!-- commands -->
58
+ * [`eas account:login`](#eas-accountlogin)
59
+ * [`eas account:logout`](#eas-accountlogout)
60
+ * [`eas account:view`](#eas-accountview)
61
+ * [`eas analytics [STATUS]`](#eas-analytics-status)
58
62
  * [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
63
+ * [`eas branch:create [NAME]`](#eas-branchcreate-name)
64
+ * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
65
+ * [`eas branch:list`](#eas-branchlist)
66
+ * [`eas branch:rename`](#eas-branchrename)
67
+ * [`eas branch:view [NAME]`](#eas-branchview-name)
68
+ * [`eas build`](#eas-build)
69
+ * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
70
+ * [`eas build:configure`](#eas-buildconfigure)
71
+ * [`eas build:inspect`](#eas-buildinspect)
72
+ * [`eas build:list`](#eas-buildlist)
73
+ * [`eas build:resign`](#eas-buildresign)
74
+ * [`eas build:run`](#eas-buildrun)
75
+ * [`eas build:submit`](#eas-buildsubmit)
76
+ * [`eas build:version:set`](#eas-buildversionset)
77
+ * [`eas build:version:sync`](#eas-buildversionsync)
78
+ * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
79
+ * [`eas channel:create [NAME]`](#eas-channelcreate-name)
80
+ * [`eas channel:edit [NAME]`](#eas-channeledit-name)
81
+ * [`eas channel:list`](#eas-channellist)
82
+ * [`eas channel:view [NAME]`](#eas-channelview-name)
83
+ * [`eas config`](#eas-config)
84
+ * [`eas credentials`](#eas-credentials)
85
+ * [`eas device:create`](#eas-devicecreate)
86
+ * [`eas device:delete`](#eas-devicedelete)
87
+ * [`eas device:list`](#eas-devicelist)
88
+ * [`eas device:view [UDID]`](#eas-deviceview-udid)
89
+ * [`eas diagnostics`](#eas-diagnostics)
59
90
  * [`eas help [COMMAND]`](#eas-help-command)
91
+ * [`eas init`](#eas-init)
92
+ * [`eas login`](#eas-login)
93
+ * [`eas logout`](#eas-logout)
94
+ * [`eas metadata:lint`](#eas-metadatalint)
95
+ * [`eas metadata:pull`](#eas-metadatapull)
96
+ * [`eas metadata:push`](#eas-metadatapush)
97
+ * [`eas open`](#eas-open)
98
+ * [`eas project:info`](#eas-projectinfo)
99
+ * [`eas project:init`](#eas-projectinit)
100
+ * [`eas secret:create`](#eas-secretcreate)
101
+ * [`eas secret:delete`](#eas-secretdelete)
102
+ * [`eas secret:list`](#eas-secretlist)
103
+ * [`eas secret:push`](#eas-secretpush)
104
+ * [`eas submit`](#eas-submit)
105
+ * [`eas update`](#eas-update)
106
+ * [`eas update:configure`](#eas-updateconfigure)
107
+ * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
108
+ * [`eas update:list`](#eas-updatelist)
109
+ * [`eas update:republish`](#eas-updaterepublish)
110
+ * [`eas update:view GROUPID`](#eas-updateview-groupid)
111
+ * [`eas webhook:create`](#eas-webhookcreate)
112
+ * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
113
+ * [`eas webhook:list`](#eas-webhooklist)
114
+ * [`eas webhook:update`](#eas-webhookupdate)
115
+ * [`eas webhook:view ID`](#eas-webhookview-id)
116
+ * [`eas whoami`](#eas-whoami)
117
+
118
+ ## `eas account:login`
119
+
120
+ log in with your Expo account
121
+
122
+ ```
123
+ USAGE
124
+ $ eas account:login
125
+
126
+ DESCRIPTION
127
+ log in with your Expo account
128
+
129
+ ALIASES
130
+ $ eas login
131
+ ```
132
+
133
+ _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/account/login.ts)_
134
+
135
+ ## `eas account:logout`
136
+
137
+ log out
138
+
139
+ ```
140
+ USAGE
141
+ $ eas account:logout
142
+
143
+ DESCRIPTION
144
+ log out
145
+
146
+ ALIASES
147
+ $ eas logout
148
+ ```
149
+
150
+ _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/account/logout.ts)_
151
+
152
+ ## `eas account:view`
153
+
154
+ show the username you are logged in as
155
+
156
+ ```
157
+ USAGE
158
+ $ eas account:view
159
+
160
+ DESCRIPTION
161
+ show the username you are logged in as
162
+
163
+ ALIASES
164
+ $ eas whoami
165
+ ```
166
+
167
+ _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/account/view.ts)_
168
+
169
+ ## `eas analytics [STATUS]`
170
+
171
+ display or change analytics settings
172
+
173
+ ```
174
+ USAGE
175
+ $ eas analytics [STATUS]
176
+
177
+ DESCRIPTION
178
+ display or change analytics settings
179
+ ```
180
+
181
+ _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/analytics.ts)_
60
182
 
61
183
  ## `eas autocomplete [SHELL]`
62
184
 
@@ -87,23 +209,1107 @@ EXAMPLES
87
209
 
88
210
  _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.4/src/commands/autocomplete/index.ts)_
89
211
 
90
- ## `eas help [COMMAND]`
212
+ ## `eas branch:create [NAME]`
91
213
 
92
- display help for eas-cli
214
+ create a branch
93
215
 
94
216
  ```
95
217
  USAGE
96
- $ eas help [COMMAND] [-n]
218
+ $ eas branch:create [NAME] [--json --non-interactive]
97
219
 
98
220
  ARGUMENTS
99
- COMMAND Command to show help for.
221
+ NAME Name of the branch to create
100
222
 
101
223
  FLAGS
102
- -n, --nested-commands Include all nested commands in the output.
224
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
225
+ --non-interactive Run the command in non-interactive mode.
103
226
 
104
227
  DESCRIPTION
105
- display help for eas-cli
228
+ create a branch
106
229
  ```
107
230
 
108
- _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.16/src/commands/help.ts)_
231
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/branch/create.ts)_
232
+
233
+ ## `eas branch:delete [NAME]`
234
+
235
+ delete a branch
236
+
237
+ ```
238
+ USAGE
239
+ $ eas branch:delete [NAME] [--json --non-interactive]
240
+
241
+ ARGUMENTS
242
+ NAME Name of the branch to delete
243
+
244
+ FLAGS
245
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
246
+ --non-interactive Run the command in non-interactive mode.
247
+
248
+ DESCRIPTION
249
+ delete a branch
250
+ ```
251
+
252
+ _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/branch/delete.ts)_
253
+
254
+ ## `eas branch:list`
255
+
256
+ list all branches
257
+
258
+ ```
259
+ USAGE
260
+ $ eas branch:list [--offset <value>] [--limit <value>] [--json --non-interactive]
261
+
262
+ FLAGS
263
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
264
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
265
+ --non-interactive Run the command in non-interactive mode.
266
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
267
+
268
+ DESCRIPTION
269
+ list all branches
270
+ ```
271
+
272
+ _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/branch/list.ts)_
273
+
274
+ ## `eas branch:rename`
275
+
276
+ rename a branch
277
+
278
+ ```
279
+ USAGE
280
+ $ eas branch:rename [--from <value>] [--to <value>] [--json --non-interactive]
281
+
282
+ FLAGS
283
+ --from=<value> current name of the branch.
284
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
285
+ --non-interactive Run the command in non-interactive mode.
286
+ --to=<value> new name of the branch.
287
+
288
+ DESCRIPTION
289
+ rename a branch
290
+ ```
291
+
292
+ _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/branch/rename.ts)_
293
+
294
+ ## `eas branch:view [NAME]`
295
+
296
+ view a branch
297
+
298
+ ```
299
+ USAGE
300
+ $ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json --non-interactive]
301
+
302
+ ARGUMENTS
303
+ NAME Name of the branch to view
304
+
305
+ FLAGS
306
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
307
+ --limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
308
+ --non-interactive Run the command in non-interactive mode.
309
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
310
+
311
+ DESCRIPTION
312
+ view a branch
313
+ ```
314
+
315
+ _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/branch/view.ts)_
316
+
317
+ ## `eas build`
318
+
319
+ start a build
320
+
321
+ ```
322
+ USAGE
323
+ $ eas build [-p android|ios|all] [-e <value>] [--local] [--output <value>] [--wait] [--clear-cache]
324
+ [--auto-submit | --auto-submit-with-profile <value>] [-m <value>] [--json --non-interactive]
325
+
326
+ FLAGS
327
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
328
+ in eas.json.
329
+ -m, --message=<value> A short message describing the build
330
+ -p, --platform=(android|ios|all)
331
+ --auto-submit Submit on build complete using the submit profile with the same name as the
332
+ build profile
333
+ --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
334
+ --clear-cache Clear cache before the build
335
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
336
+ --local Run build locally [experimental]
337
+ --non-interactive Run the command in non-interactive mode.
338
+ --output=<value> Output path for local build
339
+ --[no-]wait Wait for build(s) to complete
340
+
341
+ DESCRIPTION
342
+ start a build
343
+ ```
344
+
345
+ _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/index.ts)_
346
+
347
+ ## `eas build:cancel [BUILD_ID]`
348
+
349
+ cancel a build
350
+
351
+ ```
352
+ USAGE
353
+ $ eas build:cancel [BUILD_ID] [--non-interactive]
354
+
355
+ FLAGS
356
+ --non-interactive Run the command in non-interactive mode.
357
+
358
+ DESCRIPTION
359
+ cancel a build
360
+ ```
361
+
362
+ _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/cancel.ts)_
363
+
364
+ ## `eas build:configure`
365
+
366
+ configure the project to support EAS Build
367
+
368
+ ```
369
+ USAGE
370
+ $ eas build:configure [-p android|ios|all]
371
+
372
+ FLAGS
373
+ -p, --platform=(android|ios|all) Platform to configure
374
+
375
+ DESCRIPTION
376
+ configure the project to support EAS Build
377
+ ```
378
+
379
+ _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/configure.ts)_
380
+
381
+ ## `eas build:inspect`
382
+
383
+ inspect the state of the project at specific build stages, useful for troubleshooting
384
+
385
+ ```
386
+ USAGE
387
+ $ eas build:inspect -p android|ios -s archive|pre-build|post-build -o <value> [-e <value>] [--force] [-v]
388
+
389
+ FLAGS
390
+ -e, --profile=PROFILE_NAME
391
+ Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
392
+
393
+ -o, --output=OUTPUT_DIRECTORY
394
+ (required) Output directory.
395
+
396
+ -p, --platform=(android|ios)
397
+ (required)
398
+
399
+ -s, --stage=(archive|pre-build|post-build)
400
+ (required) Stage of the build you want to inspect.
401
+ archive - builds the project archive that would be uploaded to EAS when building
402
+ pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
403
+ post-build - builds the native project and leaves the output directory for inspection
404
+
405
+ -v, --verbose
406
+
407
+ --force
408
+ Delete OUTPUT_DIRECTORY if it already exists.
409
+
410
+ DESCRIPTION
411
+ inspect the state of the project at specific build stages, useful for troubleshooting
412
+ ```
413
+
414
+ _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/inspect.ts)_
415
+
416
+ ## `eas build:list`
417
+
418
+ list all builds for your project
419
+
420
+ ```
421
+ USAGE
422
+ $ eas build:list [--platform all|android|ios] [--status new|in-queue|in-progress|errored|finished|canceled]
423
+ [--distribution store|internal|simulator] [--channel <value>] [--appVersion <value>] [--appBuildVersion <value>]
424
+ [--sdkVersion <value>] [--runtimeVersion <value>] [--appIdentifier <value>] [--buildProfile <value>]
425
+ [--gitCommitHash <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
426
+
427
+ FLAGS
428
+ --appBuildVersion=<value>
429
+ --appIdentifier=<value>
430
+ --appVersion=<value>
431
+ --buildProfile=<value>
432
+ --channel=<value>
433
+ --distribution=(store|internal|simulator)
434
+ --gitCommitHash=<value>
435
+ --json Enable JSON output, non-JSON messages will be printed
436
+ to stderr.
437
+ --limit=<value> The number of items to fetch each query. Defaults to 10
438
+ and is capped at 50.
439
+ --non-interactive Run the command in non-interactive mode.
440
+ --offset=<value> Start queries from specified index. Use for paginating
441
+ results. Defaults to 0.
442
+ --platform=(all|android|ios)
443
+ --runtimeVersion=<value>
444
+ --sdkVersion=<value>
445
+ --status=(new|in-queue|in-progress|errored|finished|canceled)
446
+
447
+ DESCRIPTION
448
+ list all builds for your project
449
+ ```
450
+
451
+ _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/list.ts)_
452
+
453
+ ## `eas build:resign`
454
+
455
+ re-sign a build archive
456
+
457
+ ```
458
+ USAGE
459
+ $ eas build:resign [-p android|ios] [-e <value>] [--wait] [--id <value>] [--offset <value>] [--limit <value>]
460
+ [--json --non-interactive]
461
+
462
+ FLAGS
463
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
464
+ eas.json.
465
+ -p, --platform=(android|ios)
466
+ --id=<value> ID of the build to re-sign.
467
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
468
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
469
+ --non-interactive Run the command in non-interactive mode.
470
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
471
+ --[no-]wait Wait for build(s) to complete.
472
+
473
+ DESCRIPTION
474
+ re-sign a build archive
475
+ ```
476
+
477
+ _See code: [src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/resign.ts)_
478
+
479
+ ## `eas build:run`
480
+
481
+ run simulator/emulator builds from eas-cli
482
+
483
+ ```
484
+ USAGE
485
+ $ eas build:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios] [--offset
486
+ <value>] [--limit <value>]
487
+
488
+ FLAGS
489
+ -p, --platform=(android|ios)
490
+ --id=<value> ID of the simulator/emulator build to run
491
+ --latest Run the latest simulator/emulator build for specified platform
492
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
493
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
494
+ --path=<value> Path to the simulator/emulator build archive or app
495
+ --url=<value> Simulator/Emulator build archive url
496
+
497
+ DESCRIPTION
498
+ run simulator/emulator builds from eas-cli
499
+ ```
500
+
501
+ _See code: [src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/run.ts)_
502
+
503
+ ## `eas build:submit`
504
+
505
+ submit app binary to App Store and/or Play Store
506
+
507
+ ```
508
+ USAGE
509
+ $ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
510
+ [--verbose] [--wait] [--non-interactive]
511
+
512
+ FLAGS
513
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
514
+ eas.json.
515
+ -p, --platform=(android|ios|all)
516
+ --id=<value> ID of the build to submit
517
+ --latest Submit the latest build for specified platform
518
+ --non-interactive Run command in non-interactive mode
519
+ --path=<value> Path to the .apk/.aab/.ipa file
520
+ --url=<value> App archive url
521
+ --verbose Always print logs from EAS Submit
522
+ --[no-]wait Wait for submission to complete
523
+
524
+ DESCRIPTION
525
+ submit app binary to App Store and/or Play Store
526
+
527
+ ALIASES
528
+ $ eas build:submit
529
+ ```
530
+
531
+ ## `eas build:version:set`
532
+
533
+ Update version of an app.
534
+
535
+ ```
536
+ USAGE
537
+ $ eas build:version:set [-p android|ios] [-e <value>]
538
+
539
+ FLAGS
540
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
541
+ eas.json.
542
+ -p, --platform=(android|ios)
543
+
544
+ DESCRIPTION
545
+ Update version of an app.
546
+ ```
547
+
548
+ _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/version/set.ts)_
549
+
550
+ ## `eas build:version:sync`
551
+
552
+ Update a version in native code with a value stored on EAS servers
553
+
554
+ ```
555
+ USAGE
556
+ $ eas build:version:sync [-p android|ios|all] [-e <value>]
557
+
558
+ FLAGS
559
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
560
+ eas.json.
561
+ -p, --platform=(android|ios|all)
562
+
563
+ DESCRIPTION
564
+ Update a version in native code with a value stored on EAS servers
565
+ ```
566
+
567
+ _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/version/sync.ts)_
568
+
569
+ ## `eas build:view [BUILD_ID]`
570
+
571
+ view a build for your project
572
+
573
+ ```
574
+ USAGE
575
+ $ eas build:view [BUILD_ID] [--json]
576
+
577
+ FLAGS
578
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
579
+
580
+ DESCRIPTION
581
+ view a build for your project
582
+ ```
583
+
584
+ _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/build/view.ts)_
585
+
586
+ ## `eas channel:create [NAME]`
587
+
588
+ create a channel
589
+
590
+ ```
591
+ USAGE
592
+ $ eas channel:create [NAME] [--json --non-interactive]
593
+
594
+ ARGUMENTS
595
+ NAME Name of the channel to create
596
+
597
+ FLAGS
598
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
599
+ --non-interactive Run the command in non-interactive mode.
600
+
601
+ DESCRIPTION
602
+ create a channel
603
+ ```
604
+
605
+ _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/channel/create.ts)_
606
+
607
+ ## `eas channel:edit [NAME]`
608
+
609
+ point a channel at a new branch
610
+
611
+ ```
612
+ USAGE
613
+ $ eas channel:edit [NAME] [--branch <value>] [--json --non-interactive]
614
+
615
+ ARGUMENTS
616
+ NAME Name of the channel to edit
617
+
618
+ FLAGS
619
+ --branch=<value> Name of the branch to point to
620
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
621
+ --non-interactive Run the command in non-interactive mode.
622
+
623
+ DESCRIPTION
624
+ point a channel at a new branch
625
+ ```
626
+
627
+ _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/channel/edit.ts)_
628
+
629
+ ## `eas channel:list`
630
+
631
+ list all channels
632
+
633
+ ```
634
+ USAGE
635
+ $ eas channel:list [--offset <value>] [--limit <value>] [--json --non-interactive]
636
+
637
+ FLAGS
638
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
639
+ --limit=<value> The number of items to fetch each query. Defaults to 10 and is capped at 25.
640
+ --non-interactive Run the command in non-interactive mode.
641
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
642
+
643
+ DESCRIPTION
644
+ list all channels
645
+ ```
646
+
647
+ _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/channel/list.ts)_
648
+
649
+ ## `eas channel:view [NAME]`
650
+
651
+ view a channel
652
+
653
+ ```
654
+ USAGE
655
+ $ eas channel:view [NAME] [--json --non-interactive] [--offset <value>] [--limit <value>]
656
+
657
+ ARGUMENTS
658
+ NAME Name of the channel to view
659
+
660
+ FLAGS
661
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
662
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
663
+ --non-interactive Run the command in non-interactive mode.
664
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
665
+
666
+ DESCRIPTION
667
+ view a channel
668
+ ```
669
+
670
+ _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/channel/view.ts)_
671
+
672
+ ## `eas config`
673
+
674
+ display project configuration (app.json + eas.json)
675
+
676
+ ```
677
+ USAGE
678
+ $ eas config [-p android|ios] [-e <value>]
679
+
680
+ FLAGS
681
+ -e, --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
682
+ eas.json.
683
+ -p, --platform=(android|ios)
684
+
685
+ DESCRIPTION
686
+ display project configuration (app.json + eas.json)
687
+ ```
688
+
689
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/config.ts)_
690
+
691
+ ## `eas credentials`
692
+
693
+ manage credentials
694
+
695
+ ```
696
+ USAGE
697
+ $ eas credentials [-p android|ios]
698
+
699
+ FLAGS
700
+ -p, --platform=(android|ios)
701
+
702
+ DESCRIPTION
703
+ manage credentials
704
+ ```
705
+
706
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/credentials.ts)_
707
+
708
+ ## `eas device:create`
709
+
710
+ register new Apple Devices to use for internal distribution
711
+
712
+ ```
713
+ USAGE
714
+ $ eas device:create
715
+
716
+ DESCRIPTION
717
+ register new Apple Devices to use for internal distribution
718
+ ```
719
+
720
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/create.ts)_
721
+
722
+ ## `eas device:delete`
723
+
724
+ remove a registered device from your account
725
+
726
+ ```
727
+ USAGE
728
+ $ eas device:delete [--apple-team-id <value>] [--udid <value>] [--json --non-interactive]
729
+
730
+ FLAGS
731
+ --apple-team-id=<value> The Apple team ID on which to find the device
732
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
733
+ --non-interactive Run the command in non-interactive mode.
734
+ --udid=<value> The Apple device ID to disable
735
+
736
+ DESCRIPTION
737
+ remove a registered device from your account
738
+ ```
739
+
740
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/delete.ts)_
741
+
742
+ ## `eas device:list`
743
+
744
+ list all registered devices for your account
745
+
746
+ ```
747
+ USAGE
748
+ $ eas device:list [--apple-team-id <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
749
+
750
+ FLAGS
751
+ --apple-team-id=<value>
752
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
753
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
754
+ --non-interactive Run the command in non-interactive mode.
755
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
756
+
757
+ DESCRIPTION
758
+ list all registered devices for your account
759
+ ```
760
+
761
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/list.ts)_
762
+
763
+ ## `eas device:view [UDID]`
764
+
765
+ view a device for your project
766
+
767
+ ```
768
+ USAGE
769
+ $ eas device:view [UDID]
770
+
771
+ DESCRIPTION
772
+ view a device for your project
773
+ ```
774
+
775
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/device/view.ts)_
776
+
777
+ ## `eas diagnostics`
778
+
779
+ display environment info
780
+
781
+ ```
782
+ USAGE
783
+ $ eas diagnostics
784
+
785
+ DESCRIPTION
786
+ display environment info
787
+ ```
788
+
789
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/diagnostics.ts)_
790
+
791
+ ## `eas help [COMMAND]`
792
+
793
+ display help for eas-cli
794
+
795
+ ```
796
+ USAGE
797
+ $ eas help [COMMAND] [-n]
798
+
799
+ ARGUMENTS
800
+ COMMAND Command to show help for.
801
+
802
+ FLAGS
803
+ -n, --nested-commands Include all nested commands in the output.
804
+
805
+ DESCRIPTION
806
+ display help for eas-cli
807
+ ```
808
+
809
+ _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.16/src/commands/help.ts)_
810
+
811
+ ## `eas init`
812
+
813
+ create or link an EAS project
814
+
815
+ ```
816
+ USAGE
817
+ $ eas init [--force --id <value>] [--non-interactive ]
818
+
819
+ FLAGS
820
+ --force Whether to overwrite any existing project ID
821
+ --id=<value> ID of the EAS project to link
822
+ --non-interactive Run the command in non-interactive mode.
823
+
824
+ DESCRIPTION
825
+ create or link an EAS project
826
+
827
+ ALIASES
828
+ $ eas init
829
+ ```
830
+
831
+ ## `eas login`
832
+
833
+ log in with your Expo account
834
+
835
+ ```
836
+ USAGE
837
+ $ eas login
838
+
839
+ DESCRIPTION
840
+ log in with your Expo account
841
+
842
+ ALIASES
843
+ $ eas login
844
+ ```
845
+
846
+ ## `eas logout`
847
+
848
+ log out
849
+
850
+ ```
851
+ USAGE
852
+ $ eas logout
853
+
854
+ DESCRIPTION
855
+ log out
856
+
857
+ ALIASES
858
+ $ eas logout
859
+ ```
860
+
861
+ ## `eas metadata:lint`
862
+
863
+ validate the local store configuration
864
+
865
+ ```
866
+ USAGE
867
+ $ eas metadata:lint [--json] [--profile <value>]
868
+
869
+ FLAGS
870
+ --json Enable JSON output, non-JSON messages will be printed to stderr
871
+ --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
872
+
873
+ DESCRIPTION
874
+ validate the local store configuration
875
+ ```
876
+
877
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/lint.ts)_
878
+
879
+ ## `eas metadata:pull`
880
+
881
+ generate the local store configuration from the app stores
882
+
883
+ ```
884
+ USAGE
885
+ $ eas metadata:pull [-e <value>]
886
+
887
+ FLAGS
888
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
889
+
890
+ DESCRIPTION
891
+ generate the local store configuration from the app stores
892
+ ```
893
+
894
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/pull.ts)_
895
+
896
+ ## `eas metadata:push`
897
+
898
+ sync the local store configuration to the app stores
899
+
900
+ ```
901
+ USAGE
902
+ $ eas metadata:push [-e <value>]
903
+
904
+ FLAGS
905
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
906
+
907
+ DESCRIPTION
908
+ sync the local store configuration to the app stores
909
+ ```
910
+
911
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/metadata/push.ts)_
912
+
913
+ ## `eas open`
914
+
915
+ open the project page in a web browser
916
+
917
+ ```
918
+ USAGE
919
+ $ eas open
920
+
921
+ DESCRIPTION
922
+ open the project page in a web browser
923
+ ```
924
+
925
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/open.ts)_
926
+
927
+ ## `eas project:info`
928
+
929
+ information about the current project
930
+
931
+ ```
932
+ USAGE
933
+ $ eas project:info
934
+
935
+ DESCRIPTION
936
+ information about the current project
937
+ ```
938
+
939
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/project/info.ts)_
940
+
941
+ ## `eas project:init`
942
+
943
+ create or link an EAS project
944
+
945
+ ```
946
+ USAGE
947
+ $ eas project:init [--force --id <value>] [--non-interactive ]
948
+
949
+ FLAGS
950
+ --force Whether to overwrite any existing project ID
951
+ --id=<value> ID of the EAS project to link
952
+ --non-interactive Run the command in non-interactive mode.
953
+
954
+ DESCRIPTION
955
+ create or link an EAS project
956
+
957
+ ALIASES
958
+ $ eas init
959
+ ```
960
+
961
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/project/init.ts)_
962
+
963
+ ## `eas secret:create`
964
+
965
+ create an environment secret on the current project or owner account
966
+
967
+ ```
968
+ USAGE
969
+ $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
970
+ [--non-interactive]
971
+
972
+ FLAGS
973
+ --force Delete and recreate existing secrets
974
+ --name=<value> Name of the secret
975
+ --non-interactive Run the command in non-interactive mode.
976
+ --scope=(account|project) [default: project] Scope for the secret
977
+ --type=(string|file) The type of secret
978
+ --value=<value> Text value or path to a file to store in the secret
979
+
980
+ DESCRIPTION
981
+ create an environment secret on the current project or owner account
982
+ ```
983
+
984
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/create.ts)_
985
+
986
+ ## `eas secret:delete`
987
+
988
+ delete an environment secret by ID
989
+
990
+ ```
991
+ USAGE
992
+ $ eas secret:delete [--id <value>] [--non-interactive]
993
+
994
+ FLAGS
995
+ --id=<value> ID of the secret to delete
996
+ --non-interactive Run the command in non-interactive mode.
997
+
998
+ DESCRIPTION
999
+ delete an environment secret by ID
1000
+ ```
1001
+
1002
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/delete.ts)_
1003
+
1004
+ ## `eas secret:list`
1005
+
1006
+ list environment secrets available for your current app
1007
+
1008
+ ```
1009
+ USAGE
1010
+ $ eas secret:list
1011
+
1012
+ DESCRIPTION
1013
+ list environment secrets available for your current app
1014
+ ```
1015
+
1016
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/list.ts)_
1017
+
1018
+ ## `eas secret:push`
1019
+
1020
+ read environment secrets from env file and store on the server
1021
+
1022
+ ```
1023
+ USAGE
1024
+ $ eas secret:push [--scope account|project] [--env-file <value>] [--force] [--non-interactive]
1025
+
1026
+ FLAGS
1027
+ --env-file=<value> Env file with secrets
1028
+ --force Delete and recreate existing secrets
1029
+ --non-interactive Run the command in non-interactive mode.
1030
+ --scope=(account|project) [default: project] Scope for the secrets
1031
+
1032
+ DESCRIPTION
1033
+ read environment secrets from env file and store on the server
1034
+ ```
1035
+
1036
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/secret/push.ts)_
1037
+
1038
+ ## `eas submit`
1039
+
1040
+ submit app binary to App Store and/or Play Store
1041
+
1042
+ ```
1043
+ USAGE
1044
+ $ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
1045
+ [--verbose] [--wait] [--non-interactive]
1046
+
1047
+ FLAGS
1048
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
1049
+ eas.json.
1050
+ -p, --platform=(android|ios|all)
1051
+ --id=<value> ID of the build to submit
1052
+ --latest Submit the latest build for specified platform
1053
+ --non-interactive Run command in non-interactive mode
1054
+ --path=<value> Path to the .apk/.aab/.ipa file
1055
+ --url=<value> App archive url
1056
+ --verbose Always print logs from EAS Submit
1057
+ --[no-]wait Wait for submission to complete
1058
+
1059
+ DESCRIPTION
1060
+ submit app binary to App Store and/or Play Store
1061
+
1062
+ ALIASES
1063
+ $ eas build:submit
1064
+ ```
1065
+
1066
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/submit.ts)_
1067
+
1068
+ ## `eas update`
1069
+
1070
+ publish an update group
1071
+
1072
+ ```
1073
+ USAGE
1074
+ $ eas update [--branch <value>] [--channel <value>] [--message <value>] [--republish | --input-dir <value>
1075
+ | --skip-bundler] [--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json
1076
+ --non-interactive]
1077
+
1078
+ FLAGS
1079
+ -p, --platform=(android|ios|all) [default: all]
1080
+ --auto Use the current git branch and commit message for the EAS branch and update message
1081
+ --branch=<value> Branch to publish the update group on
1082
+ --channel=<value> Channel that the published update should affect
1083
+ --group=<value> Update group to republish (deprecated, see republish command)
1084
+ --input-dir=<value> [default: dist] Location of the bundle
1085
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1086
+ --message=<value> A short message describing the update
1087
+ --non-interactive Run the command in non-interactive mode.
1088
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1089
+ expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1090
+ certificate's directory.
1091
+ --republish Republish an update group (deprecated, see republish command)
1092
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
1093
+
1094
+ DESCRIPTION
1095
+ publish an update group
1096
+ ```
1097
+
1098
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/index.ts)_
1099
+
1100
+ ## `eas update:configure`
1101
+
1102
+ configure the project to support EAS Update
1103
+
1104
+ ```
1105
+ USAGE
1106
+ $ eas update:configure [-p android|ios|all] [--non-interactive]
1107
+
1108
+ FLAGS
1109
+ -p, --platform=(android|ios|all) [default: all] Platform to configure
1110
+ --non-interactive Run the command in non-interactive mode.
1111
+
1112
+ DESCRIPTION
1113
+ configure the project to support EAS Update
1114
+ ```
1115
+
1116
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/configure.ts)_
1117
+
1118
+ ## `eas update:delete GROUPID`
1119
+
1120
+ delete all the updates in an update group
1121
+
1122
+ ```
1123
+ USAGE
1124
+ $ eas update:delete [GROUPID] [--json --non-interactive]
1125
+
1126
+ ARGUMENTS
1127
+ GROUPID The ID of an update group to delete.
1128
+
1129
+ FLAGS
1130
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1131
+ --non-interactive Run the command in non-interactive mode.
1132
+
1133
+ DESCRIPTION
1134
+ delete all the updates in an update group
1135
+ ```
1136
+
1137
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/delete.ts)_
1138
+
1139
+ ## `eas update:list`
1140
+
1141
+ view the recent updates
1142
+
1143
+ ```
1144
+ USAGE
1145
+ $ eas update:list [--branch <value> | --all] [--offset <value>] [--limit <value>] [--json --non-interactive]
1146
+
1147
+ FLAGS
1148
+ --all List updates on all branches
1149
+ --branch=<value> List updates only on this branch
1150
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1151
+ --limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
1152
+ --non-interactive Run the command in non-interactive mode.
1153
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
1154
+
1155
+ DESCRIPTION
1156
+ view the recent updates
1157
+ ```
1158
+
1159
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/list.ts)_
1160
+
1161
+ ## `eas update:republish`
1162
+
1163
+ rollback to an existing update
1164
+
1165
+ ```
1166
+ USAGE
1167
+ $ eas update:republish [--branch <value> | --group <value>] [--message <value>] [-p android|ios|all] [--json
1168
+ --non-interactive]
1169
+
1170
+ FLAGS
1171
+ -p, --platform=(android|ios|all) [default: all]
1172
+ --branch=<value> Branch name to select an update to republish from
1173
+ --group=<value> Update group ID to republish
1174
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1175
+ --message=<value> Short message describing the republished update
1176
+ --non-interactive Run the command in non-interactive mode.
1177
+
1178
+ DESCRIPTION
1179
+ rollback to an existing update
1180
+ ```
1181
+
1182
+ _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/republish.ts)_
1183
+
1184
+ ## `eas update:view GROUPID`
1185
+
1186
+ update group details
1187
+
1188
+ ```
1189
+ USAGE
1190
+ $ eas update:view [GROUPID] [--json]
1191
+
1192
+ ARGUMENTS
1193
+ GROUPID The ID of an update group.
1194
+
1195
+ FLAGS
1196
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1197
+
1198
+ DESCRIPTION
1199
+ update group details
1200
+ ```
1201
+
1202
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/update/view.ts)_
1203
+
1204
+ ## `eas webhook:create`
1205
+
1206
+ create a webhook
1207
+
1208
+ ```
1209
+ USAGE
1210
+ $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1211
+
1212
+ FLAGS
1213
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1214
+ --non-interactive Run the command in non-interactive mode.
1215
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1216
+ 'Expo-Signature' header.
1217
+ --url=<value> Webhook URL
1218
+
1219
+ DESCRIPTION
1220
+ create a webhook
1221
+ ```
1222
+
1223
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/create.ts)_
1224
+
1225
+ ## `eas webhook:delete [ID]`
1226
+
1227
+ delete a webhook
1228
+
1229
+ ```
1230
+ USAGE
1231
+ $ eas webhook:delete [ID] [--non-interactive]
1232
+
1233
+ ARGUMENTS
1234
+ ID ID of the webhook to delete
1235
+
1236
+ FLAGS
1237
+ --non-interactive Run the command in non-interactive mode.
1238
+
1239
+ DESCRIPTION
1240
+ delete a webhook
1241
+ ```
1242
+
1243
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/delete.ts)_
1244
+
1245
+ ## `eas webhook:list`
1246
+
1247
+ list webhooks
1248
+
1249
+ ```
1250
+ USAGE
1251
+ $ eas webhook:list [--event BUILD|SUBMIT]
1252
+
1253
+ FLAGS
1254
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1255
+
1256
+ DESCRIPTION
1257
+ list webhooks
1258
+ ```
1259
+
1260
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/list.ts)_
1261
+
1262
+ ## `eas webhook:update`
1263
+
1264
+ update a webhook
1265
+
1266
+ ```
1267
+ USAGE
1268
+ $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1269
+
1270
+ FLAGS
1271
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1272
+ --id=<value> (required) Webhook ID
1273
+ --non-interactive Run the command in non-interactive mode.
1274
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1275
+ 'Expo-Signature' header.
1276
+ --url=<value> Webhook URL
1277
+
1278
+ DESCRIPTION
1279
+ update a webhook
1280
+ ```
1281
+
1282
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/update.ts)_
1283
+
1284
+ ## `eas webhook:view ID`
1285
+
1286
+ view a webhook
1287
+
1288
+ ```
1289
+ USAGE
1290
+ $ eas webhook:view [ID]
1291
+
1292
+ ARGUMENTS
1293
+ ID ID of the webhook to view
1294
+
1295
+ DESCRIPTION
1296
+ view a webhook
1297
+ ```
1298
+
1299
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.1.1/packages/eas-cli/src/commands/webhook/view.ts)_
1300
+
1301
+ ## `eas whoami`
1302
+
1303
+ show the username you are logged in as
1304
+
1305
+ ```
1306
+ USAGE
1307
+ $ eas whoami
1308
+
1309
+ DESCRIPTION
1310
+ show the username you are logged in as
1311
+
1312
+ ALIASES
1313
+ $ eas whoami
1314
+ ```
109
1315
  <!-- commandsstop -->