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