eas-cli 3.1.0 → 3.2.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.2.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.2.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.2.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.2.0/packages/eas-cli/src/commands/analytics.ts)_
60
184
 
61
185
  ## `eas autocomplete [SHELL]`
62
186
 
@@ -87,23 +211,1156 @@ EXAMPLES
87
211
 
88
212
  _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.4/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.16/src/commands/help.ts)_
233
+ _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v3.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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.2.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>]
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
+
687
+ DESCRIPTION
688
+ display project configuration (app.json + eas.json)
689
+ ```
690
+
691
+ _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/config.ts)_
692
+
693
+ ## `eas credentials`
694
+
695
+ manage credentials
696
+
697
+ ```
698
+ USAGE
699
+ $ eas credentials [-p android|ios]
700
+
701
+ FLAGS
702
+ -p, --platform=(android|ios)
703
+
704
+ DESCRIPTION
705
+ manage credentials
706
+ ```
707
+
708
+ _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/credentials.ts)_
709
+
710
+ ## `eas device:create`
711
+
712
+ register new Apple Devices to use for internal distribution
713
+
714
+ ```
715
+ USAGE
716
+ $ eas device:create
717
+
718
+ DESCRIPTION
719
+ register new Apple Devices to use for internal distribution
720
+ ```
721
+
722
+ _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/device/create.ts)_
723
+
724
+ ## `eas device:delete`
725
+
726
+ remove a registered device from your account
727
+
728
+ ```
729
+ USAGE
730
+ $ eas device:delete [--apple-team-id <value>] [--udid <value>] [--json --non-interactive]
731
+
732
+ FLAGS
733
+ --apple-team-id=<value> The Apple team ID on which to find the device
734
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
735
+ --non-interactive Run the command in non-interactive mode.
736
+ --udid=<value> The Apple device ID to disable
737
+
738
+ DESCRIPTION
739
+ remove a registered device from your account
740
+ ```
741
+
742
+ _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/device/delete.ts)_
743
+
744
+ ## `eas device:list`
745
+
746
+ list all registered devices for your account
747
+
748
+ ```
749
+ USAGE
750
+ $ eas device:list [--apple-team-id <value>] [--offset <value>] [--limit <value>] [--json --non-interactive]
751
+
752
+ FLAGS
753
+ --apple-team-id=<value>
754
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
755
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
756
+ --non-interactive Run the command in non-interactive mode.
757
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
758
+
759
+ DESCRIPTION
760
+ list all registered devices for your account
761
+ ```
762
+
763
+ _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/device/list.ts)_
764
+
765
+ ## `eas device:view [UDID]`
766
+
767
+ view a device for your project
768
+
769
+ ```
770
+ USAGE
771
+ $ eas device:view [UDID]
772
+
773
+ DESCRIPTION
774
+ view a device for your project
775
+ ```
776
+
777
+ _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/device/view.ts)_
778
+
779
+ ## `eas diagnostics`
780
+
781
+ display environment info
782
+
783
+ ```
784
+ USAGE
785
+ $ eas diagnostics
786
+
787
+ DESCRIPTION
788
+ display environment info
789
+ ```
790
+
791
+ _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/diagnostics.ts)_
792
+
793
+ ## `eas help [COMMAND]`
794
+
795
+ display help for eas-cli
796
+
797
+ ```
798
+ USAGE
799
+ $ eas help [COMMAND] [-n]
800
+
801
+ ARGUMENTS
802
+ COMMAND Command to show help for.
803
+
804
+ FLAGS
805
+ -n, --nested-commands Include all nested commands in the output.
806
+
807
+ DESCRIPTION
808
+ display help for eas-cli
809
+ ```
810
+
811
+ _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.1.16/src/commands/help.ts)_
812
+
813
+ ## `eas init`
814
+
815
+ create or link an EAS project
816
+
817
+ ```
818
+ USAGE
819
+ $ eas init [--force --id <value>] [--non-interactive ]
820
+
821
+ FLAGS
822
+ --force Whether to overwrite any existing project ID
823
+ --id=<value> ID of the EAS project to link
824
+ --non-interactive Run the command in non-interactive mode.
825
+
826
+ DESCRIPTION
827
+ create or link an EAS project
828
+
829
+ ALIASES
830
+ $ eas init
831
+ ```
832
+
833
+ ## `eas login`
834
+
835
+ log in with your Expo account
836
+
837
+ ```
838
+ USAGE
839
+ $ eas login
840
+
841
+ DESCRIPTION
842
+ log in with your Expo account
843
+
844
+ ALIASES
845
+ $ eas login
846
+ ```
847
+
848
+ ## `eas logout`
849
+
850
+ log out
851
+
852
+ ```
853
+ USAGE
854
+ $ eas logout
855
+
856
+ DESCRIPTION
857
+ log out
858
+
859
+ ALIASES
860
+ $ eas logout
861
+ ```
862
+
863
+ ## `eas metadata:lint`
864
+
865
+ validate the local store configuration
866
+
867
+ ```
868
+ USAGE
869
+ $ eas metadata:lint [--json] [--profile <value>]
870
+
871
+ FLAGS
872
+ --json Enable JSON output, non-JSON messages will be printed to stderr
873
+ --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
874
+
875
+ DESCRIPTION
876
+ validate the local store configuration
877
+ ```
878
+
879
+ _See code: [src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/metadata/lint.ts)_
880
+
881
+ ## `eas metadata:pull`
882
+
883
+ generate the local store configuration from the app stores
884
+
885
+ ```
886
+ USAGE
887
+ $ eas metadata:pull [-e <value>]
888
+
889
+ FLAGS
890
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
891
+
892
+ DESCRIPTION
893
+ generate the local store configuration from the app stores
894
+ ```
895
+
896
+ _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/metadata/pull.ts)_
897
+
898
+ ## `eas metadata:push`
899
+
900
+ sync the local store configuration to the app stores
901
+
902
+ ```
903
+ USAGE
904
+ $ eas metadata:push [-e <value>]
905
+
906
+ FLAGS
907
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
908
+
909
+ DESCRIPTION
910
+ sync the local store configuration to the app stores
911
+ ```
912
+
913
+ _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/metadata/push.ts)_
914
+
915
+ ## `eas open`
916
+
917
+ open the project page in a web browser
918
+
919
+ ```
920
+ USAGE
921
+ $ eas open
922
+
923
+ DESCRIPTION
924
+ open the project page in a web browser
925
+ ```
926
+
927
+ _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/open.ts)_
928
+
929
+ ## `eas project:info`
930
+
931
+ information about the current project
932
+
933
+ ```
934
+ USAGE
935
+ $ eas project:info
936
+
937
+ DESCRIPTION
938
+ information about the current project
939
+ ```
940
+
941
+ _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/project/info.ts)_
942
+
943
+ ## `eas project:init`
944
+
945
+ create or link an EAS project
946
+
947
+ ```
948
+ USAGE
949
+ $ eas project:init [--force --id <value>] [--non-interactive ]
950
+
951
+ FLAGS
952
+ --force Whether to overwrite any existing project ID
953
+ --id=<value> ID of the EAS project to link
954
+ --non-interactive Run the command in non-interactive mode.
955
+
956
+ DESCRIPTION
957
+ create or link an EAS project
958
+
959
+ ALIASES
960
+ $ eas init
961
+ ```
962
+
963
+ _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/project/init.ts)_
964
+
965
+ ## `eas run`
966
+
967
+ run simulator build
968
+
969
+ ```
970
+ USAGE
971
+ $ eas run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
972
+ <value>] [--limit <value>]
973
+
974
+ FLAGS
975
+ -p, --platform=(android|ios|all)
976
+ --id=<value> ID of the simulator build to run
977
+ --latest Run the latest simulator build for specified platform
978
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
979
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
980
+ --path=<value> Path to the simulator build file file
981
+ --url=<value> Simulator build archive url
982
+
983
+ DESCRIPTION
984
+ run simulator build
985
+ ```
986
+
987
+ _See code: [src/commands/run/index.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/run/index.ts)_
988
+
989
+ ## `eas run:run`
990
+
991
+ run simulator build
992
+
993
+ ```
994
+ USAGE
995
+ $ eas run:run [--latest | --id <value> | --path <value> | --url <value>] [-p android|ios|all] [--offset
996
+ <value>] [--limit <value>]
997
+
998
+ FLAGS
999
+ -p, --platform=(android|ios|all)
1000
+ --id=<value> ID of the simulator build to run
1001
+ --latest Run the latest simulator build for specified platform
1002
+ --limit=<value> The number of items to fetch each query. Defaults to 50 and is capped at 100.
1003
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
1004
+ --path=<value> Path to the simulator build file file
1005
+ --url=<value> Simulator build archive url
1006
+
1007
+ DESCRIPTION
1008
+ run simulator build
1009
+ ```
1010
+
1011
+ _See code: [src/commands/run/run.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/run/run.ts)_
1012
+
1013
+ ## `eas secret:create`
1014
+
1015
+ create an environment secret on the current project or owner account
1016
+
1017
+ ```
1018
+ USAGE
1019
+ $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
1020
+ [--non-interactive]
1021
+
1022
+ FLAGS
1023
+ --force Delete and recreate existing secrets
1024
+ --name=<value> Name of the secret
1025
+ --non-interactive Run the command in non-interactive mode.
1026
+ --scope=(account|project) [default: project] Scope for the secret
1027
+ --type=(string|file) The type of secret
1028
+ --value=<value> Text value or path to a file to store in the secret
1029
+
1030
+ DESCRIPTION
1031
+ create an environment secret on the current project or owner account
1032
+ ```
1033
+
1034
+ _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/create.ts)_
1035
+
1036
+ ## `eas secret:delete`
1037
+
1038
+ delete an environment secret by ID
1039
+
1040
+ ```
1041
+ USAGE
1042
+ $ eas secret:delete [--id <value>] [--non-interactive]
1043
+
1044
+ FLAGS
1045
+ --id=<value> ID of the secret to delete
1046
+ --non-interactive Run the command in non-interactive mode.
1047
+
1048
+ DESCRIPTION
1049
+ delete an environment secret by ID
1050
+ ```
1051
+
1052
+ _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/delete.ts)_
1053
+
1054
+ ## `eas secret:list`
1055
+
1056
+ list environment secrets available for your current app
1057
+
1058
+ ```
1059
+ USAGE
1060
+ $ eas secret:list
1061
+
1062
+ DESCRIPTION
1063
+ list environment secrets available for your current app
1064
+ ```
1065
+
1066
+ _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/list.ts)_
1067
+
1068
+ ## `eas secret:push`
1069
+
1070
+ read environment secrets from env file and store on the server
1071
+
1072
+ ```
1073
+ USAGE
1074
+ $ eas secret:push [--scope account|project] [--env-file <value>] [--force] [--non-interactive]
1075
+
1076
+ FLAGS
1077
+ --env-file=<value> Env file with secrets
1078
+ --force Delete and recreate existing secrets
1079
+ --non-interactive Run the command in non-interactive mode.
1080
+ --scope=(account|project) [default: project] Scope for the secrets
1081
+
1082
+ DESCRIPTION
1083
+ read environment secrets from env file and store on the server
1084
+ ```
1085
+
1086
+ _See code: [src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/secret/push.ts)_
1087
+
1088
+ ## `eas submit`
1089
+
1090
+ submit app binary to App Store and/or Play Store
1091
+
1092
+ ```
1093
+ USAGE
1094
+ $ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
1095
+ [--verbose] [--wait] [--non-interactive]
1096
+
1097
+ FLAGS
1098
+ -e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
1099
+ eas.json.
1100
+ -p, --platform=(android|ios|all)
1101
+ --id=<value> ID of the build to submit
1102
+ --latest Submit the latest build for specified platform
1103
+ --non-interactive Run command in non-interactive mode
1104
+ --path=<value> Path to the .apk/.aab/.ipa file
1105
+ --url=<value> App archive url
1106
+ --verbose Always print logs from EAS Submit
1107
+ --[no-]wait Wait for submission to complete
1108
+
1109
+ DESCRIPTION
1110
+ submit app binary to App Store and/or Play Store
1111
+
1112
+ ALIASES
1113
+ $ eas build:submit
1114
+ ```
1115
+
1116
+ _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/submit.ts)_
1117
+
1118
+ ## `eas update`
1119
+
1120
+ publish an update group
1121
+
1122
+ ```
1123
+ USAGE
1124
+ $ eas update [--branch <value>] [--channel <value>] [--message <value>] [--republish | --input-dir <value>
1125
+ | --skip-bundler] [--group <value> | | ] [-p android|ios|all] [--auto] [--private-key-path <value>] [--json
1126
+ --non-interactive]
1127
+
1128
+ FLAGS
1129
+ -p, --platform=(android|ios|all) [default: all]
1130
+ --auto Use the current git branch and commit message for the EAS branch and update message
1131
+ --branch=<value> Branch to publish the update group on
1132
+ --channel=<value> Channel that the published update should affect
1133
+ --group=<value> Update group to republish (deprecated, see republish command)
1134
+ --input-dir=<value> [default: dist] Location of the bundle
1135
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1136
+ --message=<value> A short message describing the update
1137
+ --non-interactive Run the command in non-interactive mode.
1138
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1139
+ expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1140
+ certificate's directory.
1141
+ --republish Republish an update group (deprecated, see republish command)
1142
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
1143
+
1144
+ DESCRIPTION
1145
+ publish an update group
1146
+ ```
1147
+
1148
+ _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/index.ts)_
1149
+
1150
+ ## `eas update:configure`
1151
+
1152
+ configure the project to support EAS Update
1153
+
1154
+ ```
1155
+ USAGE
1156
+ $ eas update:configure [-p android|ios|all] [--non-interactive]
1157
+
1158
+ FLAGS
1159
+ -p, --platform=(android|ios|all) [default: all] Platform to configure
1160
+ --non-interactive Run the command in non-interactive mode.
1161
+
1162
+ DESCRIPTION
1163
+ configure the project to support EAS Update
1164
+ ```
1165
+
1166
+ _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/configure.ts)_
1167
+
1168
+ ## `eas update:delete GROUPID`
1169
+
1170
+ delete all the updates in an update group
1171
+
1172
+ ```
1173
+ USAGE
1174
+ $ eas update:delete [GROUPID] [--json --non-interactive]
1175
+
1176
+ ARGUMENTS
1177
+ GROUPID The ID of an update group to delete.
1178
+
1179
+ FLAGS
1180
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1181
+ --non-interactive Run the command in non-interactive mode.
1182
+
1183
+ DESCRIPTION
1184
+ delete all the updates in an update group
1185
+ ```
1186
+
1187
+ _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/delete.ts)_
1188
+
1189
+ ## `eas update:list`
1190
+
1191
+ view the recent updates
1192
+
1193
+ ```
1194
+ USAGE
1195
+ $ eas update:list [--branch <value> | --all] [--offset <value>] [--limit <value>] [--json --non-interactive]
1196
+
1197
+ FLAGS
1198
+ --all List updates on all branches
1199
+ --branch=<value> List updates only on this branch
1200
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1201
+ --limit=<value> The number of items to fetch each query. Defaults to 25 and is capped at 50.
1202
+ --non-interactive Run the command in non-interactive mode.
1203
+ --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
1204
+
1205
+ DESCRIPTION
1206
+ view the recent updates
1207
+ ```
1208
+
1209
+ _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/list.ts)_
1210
+
1211
+ ## `eas update:republish`
1212
+
1213
+ rollback to an existing update
1214
+
1215
+ ```
1216
+ USAGE
1217
+ $ eas update:republish [--channel <value> | --branch <value> | --group <value>] [--message <value>] [-p
1218
+ android|ios|all] [--json --non-interactive]
1219
+
1220
+ FLAGS
1221
+ -p, --platform=(android|ios|all) [default: all]
1222
+ --branch=<value> Branch name to select an update to republish from
1223
+ --channel=<value> Channel name to select an update to republish from
1224
+ --group=<value> Update group ID to republish
1225
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1226
+ --message=<value> Short message describing the republished update
1227
+ --non-interactive Run the command in non-interactive mode.
1228
+
1229
+ DESCRIPTION
1230
+ rollback to an existing update
1231
+ ```
1232
+
1233
+ _See code: [src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/republish.ts)_
1234
+
1235
+ ## `eas update:view GROUPID`
1236
+
1237
+ update group details
1238
+
1239
+ ```
1240
+ USAGE
1241
+ $ eas update:view [GROUPID] [--json]
1242
+
1243
+ ARGUMENTS
1244
+ GROUPID The ID of an update group.
1245
+
1246
+ FLAGS
1247
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1248
+
1249
+ DESCRIPTION
1250
+ update group details
1251
+ ```
1252
+
1253
+ _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/update/view.ts)_
1254
+
1255
+ ## `eas webhook:create`
1256
+
1257
+ create a webhook
1258
+
1259
+ ```
1260
+ USAGE
1261
+ $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1262
+
1263
+ FLAGS
1264
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1265
+ --non-interactive Run the command in non-interactive mode.
1266
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1267
+ 'Expo-Signature' header.
1268
+ --url=<value> Webhook URL
1269
+
1270
+ DESCRIPTION
1271
+ create a webhook
1272
+ ```
1273
+
1274
+ _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/create.ts)_
1275
+
1276
+ ## `eas webhook:delete [ID]`
1277
+
1278
+ delete a webhook
1279
+
1280
+ ```
1281
+ USAGE
1282
+ $ eas webhook:delete [ID] [--non-interactive]
1283
+
1284
+ ARGUMENTS
1285
+ ID ID of the webhook to delete
1286
+
1287
+ FLAGS
1288
+ --non-interactive Run the command in non-interactive mode.
1289
+
1290
+ DESCRIPTION
1291
+ delete a webhook
1292
+ ```
1293
+
1294
+ _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1295
+
1296
+ ## `eas webhook:list`
1297
+
1298
+ list webhooks
1299
+
1300
+ ```
1301
+ USAGE
1302
+ $ eas webhook:list [--event BUILD|SUBMIT]
1303
+
1304
+ FLAGS
1305
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1306
+
1307
+ DESCRIPTION
1308
+ list webhooks
1309
+ ```
1310
+
1311
+ _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/list.ts)_
1312
+
1313
+ ## `eas webhook:update`
1314
+
1315
+ update a webhook
1316
+
1317
+ ```
1318
+ USAGE
1319
+ $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>] [--non-interactive]
1320
+
1321
+ FLAGS
1322
+ --event=(BUILD|SUBMIT) Event type that triggers the webhook
1323
+ --id=<value> (required) Webhook ID
1324
+ --non-interactive Run the command in non-interactive mode.
1325
+ --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1326
+ 'Expo-Signature' header.
1327
+ --url=<value> Webhook URL
1328
+
1329
+ DESCRIPTION
1330
+ update a webhook
1331
+ ```
1332
+
1333
+ _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/update.ts)_
1334
+
1335
+ ## `eas webhook:view ID`
1336
+
1337
+ view a webhook
1338
+
1339
+ ```
1340
+ USAGE
1341
+ $ eas webhook:view [ID]
1342
+
1343
+ ARGUMENTS
1344
+ ID ID of the webhook to view
1345
+
1346
+ DESCRIPTION
1347
+ view a webhook
1348
+ ```
1349
+
1350
+ _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v3.2.0/packages/eas-cli/src/commands/webhook/view.ts)_
1351
+
1352
+ ## `eas whoami`
1353
+
1354
+ show the username you are logged in as
1355
+
1356
+ ```
1357
+ USAGE
1358
+ $ eas whoami
1359
+
1360
+ DESCRIPTION
1361
+ show the username you are logged in as
1362
+
1363
+ ALIASES
1364
+ $ eas whoami
1365
+ ```
109
1366
  <!-- commandsstop -->