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