eas-cli 13.3.0 → 13.4.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.
Files changed (51) hide show
  1. package/README.md +299 -165
  2. package/build/build/build.js +3 -3
  3. package/build/build/evaluateConfigWithEnvVarsAsync.js +18 -2
  4. package/build/commandUtils/flags.d.ts +5 -4
  5. package/build/commandUtils/flags.js +6 -8
  6. package/build/commands/env/create.d.ts +6 -6
  7. package/build/commands/env/create.js +27 -28
  8. package/build/commands/env/delete.d.ts +5 -5
  9. package/build/commands/env/delete.js +15 -13
  10. package/build/commands/env/exec.d.ts +0 -1
  11. package/build/commands/env/exec.js +1 -2
  12. package/build/commands/env/get.d.ts +5 -5
  13. package/build/commands/env/get.js +16 -13
  14. package/build/commands/env/link.d.ts +1 -1
  15. package/build/commands/env/link.js +12 -13
  16. package/build/commands/env/list.d.ts +5 -5
  17. package/build/commands/env/list.js +14 -12
  18. package/build/commands/env/pull.d.ts +1 -2
  19. package/build/commands/env/pull.js +8 -9
  20. package/build/commands/env/push.d.ts +1 -2
  21. package/build/commands/env/push.js +9 -10
  22. package/build/commands/env/unlink.d.ts +1 -1
  23. package/build/commands/env/unlink.js +11 -10
  24. package/build/commands/env/update.d.ts +6 -6
  25. package/build/commands/env/update.js +18 -15
  26. package/build/commands/secret/create.d.ts +1 -0
  27. package/build/commands/secret/create.js +3 -0
  28. package/build/commands/secret/delete.d.ts +1 -0
  29. package/build/commands/secret/delete.js +3 -0
  30. package/build/commands/secret/list.d.ts +1 -0
  31. package/build/commands/secret/list.js +3 -0
  32. package/build/commands/secret/push.d.ts +1 -0
  33. package/build/commands/secret/push.js +3 -0
  34. package/build/commands/update/index.js +19 -2
  35. package/build/graphql/generated.d.ts +140 -26
  36. package/build/graphql/generated.js +2 -0
  37. package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +1 -0
  38. package/build/graphql/types/Update.js +9 -0
  39. package/build/project/publish.d.ts +23 -1
  40. package/build/project/publish.js +71 -11
  41. package/build/project/resolveRuntimeVersionAsync.d.ts +2 -0
  42. package/build/project/resolveRuntimeVersionAsync.js +4 -0
  43. package/build/update/republish.js +19 -0
  44. package/build/utils/expodash/mapMapAsync.d.ts +1 -0
  45. package/build/utils/expodash/mapMapAsync.js +12 -0
  46. package/build/utils/fingerprintCli.d.ts +21 -3
  47. package/build/utils/fingerprintCli.js +62 -13
  48. package/build/utils/prompts.d.ts +1 -1
  49. package/build/utils/prompts.js +1 -1
  50. package/oclif.manifest.json +43 -48
  51. package/package.json +7 -4
package/README.md CHANGED
@@ -94,6 +94,14 @@ eas --help COMMAND
94
94
  * [`eas device:rename`](#eas-devicerename)
95
95
  * [`eas device:view [UDID]`](#eas-deviceview-udid)
96
96
  * [`eas diagnostics`](#eas-diagnostics)
97
+ * [`eas env:create [ENVIRONMENT]`](#eas-envcreate-environment)
98
+ * [`eas env:delete [ENVIRONMENT]`](#eas-envdelete-environment)
99
+ * [`eas env:exec ENVIRONMENT BASH_COMMAND`](#eas-envexec-environment-bash_command)
100
+ * [`eas env:get [ENVIRONMENT]`](#eas-envget-environment)
101
+ * [`eas env:list [ENVIRONMENT]`](#eas-envlist-environment)
102
+ * [`eas env:pull [ENVIRONMENT]`](#eas-envpull-environment)
103
+ * [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
104
+ * [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
97
105
  * [`eas help [COMMAND]`](#eas-help-command)
98
106
  * [`eas init`](#eas-init)
99
107
  * [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
@@ -107,10 +115,6 @@ eas --help COMMAND
107
115
  * [`eas project:info`](#eas-projectinfo)
108
116
  * [`eas project:init`](#eas-projectinit)
109
117
  * [`eas project:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-projectonboarding-target_project_directory)
110
- * [`eas secret:create`](#eas-secretcreate)
111
- * [`eas secret:delete`](#eas-secretdelete)
112
- * [`eas secret:list`](#eas-secretlist)
113
- * [`eas secret:push`](#eas-secretpush)
114
118
  * [`eas submit`](#eas-submit)
115
119
  * [`eas update`](#eas-update)
116
120
  * [`eas update:configure`](#eas-updateconfigure)
@@ -149,7 +153,7 @@ ALIASES
149
153
  $ eas login
150
154
  ```
151
155
 
152
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/login.ts)_
156
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/login.ts)_
153
157
 
154
158
  ## `eas account:logout`
155
159
 
@@ -166,7 +170,7 @@ ALIASES
166
170
  $ eas logout
167
171
  ```
168
172
 
169
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/logout.ts)_
173
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/logout.ts)_
170
174
 
171
175
  ## `eas account:view`
172
176
 
@@ -183,7 +187,7 @@ ALIASES
183
187
  $ eas whoami
184
188
  ```
185
189
 
186
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/view.ts)_
190
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/view.ts)_
187
191
 
188
192
  ## `eas analytics [STATUS]`
189
193
 
@@ -197,7 +201,7 @@ DESCRIPTION
197
201
  display or change analytics settings
198
202
  ```
199
203
 
200
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/analytics.ts)_
204
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/analytics.ts)_
201
205
 
202
206
  ## `eas autocomplete [SHELL]`
203
207
 
@@ -249,7 +253,7 @@ DESCRIPTION
249
253
  create a branch
250
254
  ```
251
255
 
252
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/create.ts)_
256
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/create.ts)_
253
257
 
254
258
  ## `eas branch:delete [NAME]`
255
259
 
@@ -270,7 +274,7 @@ DESCRIPTION
270
274
  delete a branch
271
275
  ```
272
276
 
273
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/delete.ts)_
277
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/delete.ts)_
274
278
 
275
279
  ## `eas branch:list`
276
280
 
@@ -290,7 +294,7 @@ DESCRIPTION
290
294
  list all branches
291
295
  ```
292
296
 
293
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/list.ts)_
297
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/list.ts)_
294
298
 
295
299
  ## `eas branch:rename`
296
300
 
@@ -310,7 +314,7 @@ DESCRIPTION
310
314
  rename a branch
311
315
  ```
312
316
 
313
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/rename.ts)_
317
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/rename.ts)_
314
318
 
315
319
  ## `eas branch:view [NAME]`
316
320
 
@@ -333,7 +337,7 @@ DESCRIPTION
333
337
  view a branch
334
338
  ```
335
339
 
336
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/view.ts)_
340
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/view.ts)_
337
341
 
338
342
  ## `eas build`
339
343
 
@@ -370,7 +374,7 @@ DESCRIPTION
370
374
  start a build
371
375
  ```
372
376
 
373
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/index.ts)_
377
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/index.ts)_
374
378
 
375
379
  ## `eas build:cancel [BUILD_ID]`
376
380
 
@@ -389,7 +393,7 @@ DESCRIPTION
389
393
  cancel a build
390
394
  ```
391
395
 
392
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/cancel.ts)_
396
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/cancel.ts)_
393
397
 
394
398
  ## `eas build:configure`
395
399
 
@@ -406,7 +410,7 @@ DESCRIPTION
406
410
  configure the project to support EAS Build
407
411
  ```
408
412
 
409
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/configure.ts)_
413
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/configure.ts)_
410
414
 
411
415
  ## `eas build:delete [BUILD_ID]`
412
416
 
@@ -425,7 +429,7 @@ DESCRIPTION
425
429
  delete a build
426
430
  ```
427
431
 
428
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/delete.ts)_
432
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/delete.ts)_
429
433
 
430
434
  ## `eas build:inspect`
431
435
 
@@ -460,7 +464,7 @@ DESCRIPTION
460
464
  inspect the state of the project at specific build stages, useful for troubleshooting
461
465
  ```
462
466
 
463
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/inspect.ts)_
467
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/inspect.ts)_
464
468
 
465
469
  ## `eas build:list`
466
470
 
@@ -510,7 +514,7 @@ DESCRIPTION
510
514
  list all builds for your project
511
515
  ```
512
516
 
513
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/list.ts)_
517
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/list.ts)_
514
518
 
515
519
  ## `eas build:resign`
516
520
 
@@ -539,7 +543,7 @@ DESCRIPTION
539
543
  re-sign a build archive
540
544
  ```
541
545
 
542
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/resign.ts)_
546
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/resign.ts)_
543
547
 
544
548
  ## `eas build:run`
545
549
 
@@ -565,7 +569,7 @@ DESCRIPTION
565
569
  run simulator/emulator builds from eas-cli
566
570
  ```
567
571
 
568
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/run.ts)_
572
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/run.ts)_
569
573
 
570
574
  ## `eas build:submit`
571
575
 
@@ -615,7 +619,7 @@ DESCRIPTION
615
619
  get the latest version from EAS servers
616
620
  ```
617
621
 
618
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/get.ts)_
622
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/get.ts)_
619
623
 
620
624
  ## `eas build:version:set`
621
625
 
@@ -634,7 +638,7 @@ DESCRIPTION
634
638
  update version of an app
635
639
  ```
636
640
 
637
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/set.ts)_
641
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/set.ts)_
638
642
 
639
643
  ## `eas build:version:sync`
640
644
 
@@ -653,7 +657,7 @@ DESCRIPTION
653
657
  update a version in native code with a value stored on EAS servers
654
658
  ```
655
659
 
656
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/sync.ts)_
660
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/sync.ts)_
657
661
 
658
662
  ## `eas build:view [BUILD_ID]`
659
663
 
@@ -670,7 +674,7 @@ DESCRIPTION
670
674
  view a build for your project
671
675
  ```
672
676
 
673
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/view.ts)_
677
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/view.ts)_
674
678
 
675
679
  ## `eas channel:create [NAME]`
676
680
 
@@ -691,7 +695,7 @@ DESCRIPTION
691
695
  create a channel
692
696
  ```
693
697
 
694
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/create.ts)_
698
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/create.ts)_
695
699
 
696
700
  ## `eas channel:edit [NAME]`
697
701
 
@@ -713,7 +717,7 @@ DESCRIPTION
713
717
  point a channel at a new branch
714
718
  ```
715
719
 
716
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/edit.ts)_
720
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/edit.ts)_
717
721
 
718
722
  ## `eas channel:list`
719
723
 
@@ -733,7 +737,7 @@ DESCRIPTION
733
737
  list all channels
734
738
  ```
735
739
 
736
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/list.ts)_
740
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/list.ts)_
737
741
 
738
742
  ## `eas channel:pause [NAME]`
739
743
 
@@ -755,7 +759,7 @@ DESCRIPTION
755
759
  pause a channel to stop it from sending updates
756
760
  ```
757
761
 
758
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/pause.ts)_
762
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/pause.ts)_
759
763
 
760
764
  ## `eas channel:resume [NAME]`
761
765
 
@@ -777,7 +781,7 @@ DESCRIPTION
777
781
  resume a channel to start sending updates
778
782
  ```
779
783
 
780
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/resume.ts)_
784
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/resume.ts)_
781
785
 
782
786
  ## `eas channel:rollout [CHANNEL]`
783
787
 
@@ -810,7 +814,7 @@ DESCRIPTION
810
814
  Roll a new branch out on a channel incrementally.
811
815
  ```
812
816
 
813
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/rollout.ts)_
817
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/rollout.ts)_
814
818
 
815
819
  ## `eas channel:view [NAME]`
816
820
 
@@ -833,7 +837,7 @@ DESCRIPTION
833
837
  view a channel
834
838
  ```
835
839
 
836
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/view.ts)_
840
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/view.ts)_
837
841
 
838
842
  ## `eas config`
839
843
 
@@ -854,7 +858,7 @@ DESCRIPTION
854
858
  display project configuration (app.json + eas.json)
855
859
  ```
856
860
 
857
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/config.ts)_
861
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/config.ts)_
858
862
 
859
863
  ## `eas credentials`
860
864
 
@@ -871,7 +875,7 @@ DESCRIPTION
871
875
  manage credentials
872
876
  ```
873
877
 
874
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/credentials/index.ts)_
878
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/credentials/index.ts)_
875
879
 
876
880
  ## `eas credentials:configure-build`
877
881
 
@@ -889,7 +893,7 @@ DESCRIPTION
889
893
  Set up credentials for building your project.
890
894
  ```
891
895
 
892
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
896
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
893
897
 
894
898
  ## `eas device:create`
895
899
 
@@ -903,7 +907,7 @@ DESCRIPTION
903
907
  register new Apple Devices to use for internal distribution
904
908
  ```
905
909
 
906
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/create.ts)_
910
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/create.ts)_
907
911
 
908
912
  ## `eas device:delete`
909
913
 
@@ -923,7 +927,7 @@ DESCRIPTION
923
927
  remove a registered device from your account
924
928
  ```
925
929
 
926
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/delete.ts)_
930
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/delete.ts)_
927
931
 
928
932
  ## `eas device:list`
929
933
 
@@ -944,7 +948,7 @@ DESCRIPTION
944
948
  list all registered devices for your account
945
949
  ```
946
950
 
947
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/list.ts)_
951
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/list.ts)_
948
952
 
949
953
  ## `eas device:rename`
950
954
 
@@ -965,7 +969,7 @@ DESCRIPTION
965
969
  rename a registered device
966
970
  ```
967
971
 
968
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/rename.ts)_
972
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/rename.ts)_
969
973
 
970
974
  ## `eas device:view [UDID]`
971
975
 
@@ -979,7 +983,7 @@ DESCRIPTION
979
983
  view a device for your project
980
984
  ```
981
985
 
982
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/view.ts)_
986
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/view.ts)_
983
987
 
984
988
  ## `eas diagnostics`
985
989
 
@@ -993,7 +997,206 @@ DESCRIPTION
993
997
  display environment info
994
998
  ```
995
999
 
996
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/diagnostics.ts)_
1000
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/diagnostics.ts)_
1001
+
1002
+ ## `eas env:create [ENVIRONMENT]`
1003
+
1004
+ create an environment variable for the current project or account
1005
+
1006
+ ```
1007
+ USAGE
1008
+ $ eas env:create [ENVIRONMENT] [--name <value>] [--value <value>] [--force] [--type string|file] [--visibility
1009
+ plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
1010
+ [--non-interactive]
1011
+
1012
+ ARGUMENTS
1013
+ ENVIRONMENT Environment to create the variable in. One of 'production', 'preview', or 'development'.
1014
+
1015
+ FLAGS
1016
+ --environment=(development|preview|production)... Environment variable's environment
1017
+ --force Overwrite existing variable
1018
+ --name=<value> Name of the variable
1019
+ --non-interactive Run the command in non-interactive mode.
1020
+ --scope=(project|account) [default: project] Scope for the variable
1021
+ --type=(string|file) The type of variable
1022
+ --value=<value> Text value or the variable
1023
+ --visibility=(plaintext|sensitive|secret) Visibility of the variable
1024
+
1025
+ DESCRIPTION
1026
+ create an environment variable for the current project or account
1027
+ ```
1028
+
1029
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/create.ts)_
1030
+
1031
+ ## `eas env:delete [ENVIRONMENT]`
1032
+
1033
+ delete an environment variable for the current project or account
1034
+
1035
+ ```
1036
+ USAGE
1037
+ $ eas env:delete [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1038
+ development|preview|production] [--scope project|account] [--non-interactive]
1039
+
1040
+ ARGUMENTS
1041
+ ENVIRONMENT Current environment of the variable to delete. One of 'production', 'preview', or 'development'.
1042
+
1043
+ FLAGS
1044
+ --non-interactive Run the command in non-interactive mode.
1045
+ --scope=(project|account) [default: project] Scope for the variable
1046
+ --variable-environment=(development|preview|production) Current environment of the variable to delete
1047
+ --variable-name=<value> Name of the variable to delete
1048
+
1049
+ DESCRIPTION
1050
+ delete an environment variable for the current project or account
1051
+ ```
1052
+
1053
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/delete.ts)_
1054
+
1055
+ ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1056
+
1057
+ execute a command with environment variables from the selected environment
1058
+
1059
+ ```
1060
+ USAGE
1061
+ $ eas env:exec ENVIRONMENT BASH_COMMAND [--non-interactive]
1062
+
1063
+ ARGUMENTS
1064
+ ENVIRONMENT Environment to execute the command in. One of 'production', 'preview', or 'development'.
1065
+ BASH_COMMAND bash command to execute with the environment variables from the environment
1066
+
1067
+ FLAGS
1068
+ --non-interactive Run the command in non-interactive mode.
1069
+
1070
+ DESCRIPTION
1071
+ execute a command with environment variables from the selected environment
1072
+ ```
1073
+
1074
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/exec.ts)_
1075
+
1076
+ ## `eas env:get [ENVIRONMENT]`
1077
+
1078
+ view an environment variable for the current project or account
1079
+
1080
+ ```
1081
+ USAGE
1082
+ $ eas env:get [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1083
+ development|preview|production] [--format long|short] [--scope project|account] [--non-interactive]
1084
+
1085
+ ARGUMENTS
1086
+ ENVIRONMENT Current environment of the variable. One of 'production', 'preview', or 'development'.
1087
+
1088
+ FLAGS
1089
+ --format=(long|short) [default: short] Output format
1090
+ --non-interactive Run the command in non-interactive mode.
1091
+ --scope=(project|account) [default: project] Scope for the variable
1092
+ --variable-environment=(development|preview|production) Current environment of the variable
1093
+ --variable-name=<value> Name of the variable
1094
+
1095
+ DESCRIPTION
1096
+ view an environment variable for the current project or account
1097
+ ```
1098
+
1099
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/get.ts)_
1100
+
1101
+ ## `eas env:list [ENVIRONMENT]`
1102
+
1103
+ list environment variables for the current project or account
1104
+
1105
+ ```
1106
+ USAGE
1107
+ $ eas env:list [ENVIRONMENT] [--include-sensitive] [--include-file-content] [--environment
1108
+ development|preview|production] [--format long|short] [--scope project|account]
1109
+
1110
+ ARGUMENTS
1111
+ ENVIRONMENT Environment to list the variables from. One of 'production', 'preview', or 'development'.
1112
+
1113
+ FLAGS
1114
+ --environment=(development|preview|production)... Environment variable's environment
1115
+ --format=(long|short) [default: short] Output format
1116
+ --include-file-content Display files content in the output
1117
+ --include-sensitive Display sensitive values in the output
1118
+ --scope=(project|account) [default: project] Scope for the variable
1119
+
1120
+ DESCRIPTION
1121
+ list environment variables for the current project or account
1122
+ ```
1123
+
1124
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/list.ts)_
1125
+
1126
+ ## `eas env:pull [ENVIRONMENT]`
1127
+
1128
+ pull environment variables for the selected environment to .env file
1129
+
1130
+ ```
1131
+ USAGE
1132
+ $ eas env:pull [ENVIRONMENT] [--non-interactive] [--environment development|preview|production] [--path
1133
+ <value>]
1134
+
1135
+ ARGUMENTS
1136
+ ENVIRONMENT Environment to pull variables from. One of 'production', 'preview', or 'development'.
1137
+
1138
+ FLAGS
1139
+ --environment=(development|preview|production) Environment variable's environment
1140
+ --non-interactive Run the command in non-interactive mode.
1141
+ --path=<value> [default: .env.local] Path to the result `.env` file
1142
+
1143
+ DESCRIPTION
1144
+ pull environment variables for the selected environment to .env file
1145
+ ```
1146
+
1147
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/pull.ts)_
1148
+
1149
+ ## `eas env:push [ENVIRONMENT]`
1150
+
1151
+ push environment variables from .env file to the selected environment
1152
+
1153
+ ```
1154
+ USAGE
1155
+ $ eas env:push [ENVIRONMENT] [--environment development|preview|production] [--path <value>]
1156
+
1157
+ ARGUMENTS
1158
+ ENVIRONMENT Environment to push variables to. One of 'production', 'preview', or 'development'.
1159
+
1160
+ FLAGS
1161
+ --environment=(development|preview|production)... Environment variable's environment
1162
+ --path=<value> [default: .env.local] Path to the input `.env` file
1163
+
1164
+ DESCRIPTION
1165
+ push environment variables from .env file to the selected environment
1166
+ ```
1167
+
1168
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/push.ts)_
1169
+
1170
+ ## `eas env:update [ENVIRONMENT]`
1171
+
1172
+ update an environment variable on the current project or account
1173
+
1174
+ ```
1175
+ USAGE
1176
+ $ eas env:update [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1177
+ development|preview|production] [--name <value>] [--value <value>] [--type string|file] [--visibility
1178
+ plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
1179
+ [--non-interactive]
1180
+
1181
+ ARGUMENTS
1182
+ ENVIRONMENT Current environment of the variable to update. One of 'production', 'preview', or 'development'.
1183
+
1184
+ FLAGS
1185
+ --environment=(development|preview|production)... Environment variable's environment
1186
+ --name=<value> New name of the variable
1187
+ --non-interactive Run the command in non-interactive mode.
1188
+ --scope=(project|account) [default: project] Scope for the variable
1189
+ --type=(string|file) The type of variable
1190
+ --value=<value> New value or the variable
1191
+ --variable-environment=(development|preview|production) Current environment of the variable to update
1192
+ --variable-name=<value> Current name of the variable
1193
+ --visibility=(plaintext|sensitive|secret) Visibility of the variable
1194
+
1195
+ DESCRIPTION
1196
+ update an environment variable on the current project or account
1197
+ ```
1198
+
1199
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/update.ts)_
997
1200
 
998
1201
  ## `eas help [COMMAND]`
999
1202
 
@@ -1101,7 +1304,7 @@ DESCRIPTION
1101
1304
  validate the local store configuration
1102
1305
  ```
1103
1306
 
1104
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1307
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1105
1308
 
1106
1309
  ## `eas metadata:pull`
1107
1310
 
@@ -1118,7 +1321,7 @@ DESCRIPTION
1118
1321
  generate the local store configuration from the app stores
1119
1322
  ```
1120
1323
 
1121
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1324
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1122
1325
 
1123
1326
  ## `eas metadata:push`
1124
1327
 
@@ -1135,7 +1338,7 @@ DESCRIPTION
1135
1338
  sync the local store configuration to the app stores
1136
1339
  ```
1137
1340
 
1138
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/push.ts)_
1341
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/push.ts)_
1139
1342
 
1140
1343
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1141
1344
 
@@ -1165,7 +1368,7 @@ DESCRIPTION
1165
1368
  open the project page in a web browser
1166
1369
  ```
1167
1370
 
1168
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/open.ts)_
1371
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/open.ts)_
1169
1372
 
1170
1373
  ## `eas project:info`
1171
1374
 
@@ -1179,7 +1382,7 @@ DESCRIPTION
1179
1382
  information about the current project
1180
1383
  ```
1181
1384
 
1182
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/info.ts)_
1385
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/info.ts)_
1183
1386
 
1184
1387
  ## `eas project:init`
1185
1388
 
@@ -1202,7 +1405,7 @@ ALIASES
1202
1405
  $ eas init
1203
1406
  ```
1204
1407
 
1205
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/init.ts)_
1408
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/init.ts)_
1206
1409
 
1207
1410
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
1208
1411
 
@@ -1220,82 +1423,7 @@ ALIASES
1220
1423
  $ eas onboarding
1221
1424
  ```
1222
1425
 
1223
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1224
-
1225
- ## `eas secret:create`
1226
-
1227
- create an environment secret on the current project or owner account
1228
-
1229
- ```
1230
- USAGE
1231
- $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
1232
- [--non-interactive]
1233
-
1234
- FLAGS
1235
- --force Delete and recreate existing secrets
1236
- --name=<value> Name of the secret
1237
- --non-interactive Run the command in non-interactive mode.
1238
- --scope=(account|project) [default: project] Scope for the secret
1239
- --type=(string|file) The type of secret
1240
- --value=<value> Text value or path to a file to store in the secret
1241
-
1242
- DESCRIPTION
1243
- create an environment secret on the current project or owner account
1244
- ```
1245
-
1246
- _See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/create.ts)_
1247
-
1248
- ## `eas secret:delete`
1249
-
1250
- delete an environment secret by ID
1251
-
1252
- ```
1253
- USAGE
1254
- $ eas secret:delete [--id <value>] [--non-interactive]
1255
-
1256
- FLAGS
1257
- --id=<value> ID of the secret to delete
1258
- --non-interactive Run the command in non-interactive mode.
1259
-
1260
- DESCRIPTION
1261
- delete an environment secret by ID
1262
- ```
1263
-
1264
- _See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/delete.ts)_
1265
-
1266
- ## `eas secret:list`
1267
-
1268
- list environment secrets available for your current app
1269
-
1270
- ```
1271
- USAGE
1272
- $ eas secret:list
1273
-
1274
- DESCRIPTION
1275
- list environment secrets available for your current app
1276
- ```
1277
-
1278
- _See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/list.ts)_
1279
-
1280
- ## `eas secret:push`
1281
-
1282
- read environment secrets from env file and store on the server
1283
-
1284
- ```
1285
- USAGE
1286
- $ eas secret:push [--scope account|project] [--env-file <value>] [--force] [--non-interactive]
1287
-
1288
- FLAGS
1289
- --env-file=<value> Env file with secrets
1290
- --force Delete and recreate existing secrets
1291
- --non-interactive Run the command in non-interactive mode.
1292
- --scope=(account|project) [default: project] Scope for the secrets
1293
-
1294
- DESCRIPTION
1295
- read environment secrets from env file and store on the server
1296
- ```
1297
-
1298
- _See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/push.ts)_
1426
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1299
1427
 
1300
1428
  ## `eas submit`
1301
1429
 
@@ -1326,7 +1454,7 @@ ALIASES
1326
1454
  $ eas build:submit
1327
1455
  ```
1328
1456
 
1329
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/submit.ts)_
1457
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/submit.ts)_
1330
1458
 
1331
1459
  ## `eas update`
1332
1460
 
@@ -1336,35 +1464,39 @@ publish an update group
1336
1464
  USAGE
1337
1465
  $ eas update [--branch <value>] [--channel <value>] [-m <value>] [--input-dir <value>] [--skip-bundler]
1338
1466
  [--clear-cache] [--emit-metadata] [--rollout-percentage <value>] [-p android|ios|all] [--auto] [--private-key-path
1339
- <value>] [--json --non-interactive]
1467
+ <value>] [--environment development|preview|production] [--json --non-interactive]
1340
1468
 
1341
1469
  FLAGS
1342
- -m, --message=<value> A short message describing the update
1343
- -p, --platform=(android|ios|all) [default: all]
1344
- --auto Use the current git branch and commit message for the EAS branch and update message
1345
- --branch=<value> Branch to publish the update group on
1346
- --channel=<value> Channel that the published update should affect
1347
- --clear-cache Clear the bundler cache before publishing
1348
- --emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed information about
1349
- the generated updates
1350
- --input-dir=<value> [default: dist] Location of the bundle
1351
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1352
- --non-interactive Run the command in non-interactive mode.
1353
- --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1354
- expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1355
- certificate's directory. Only relevant if you are using code signing:
1356
- https://docs.expo.dev/eas-update/code-signing/
1357
- --rollout-percentage=<value> Percentage of users this update should be immediately available to. Users not in the
1358
- rollout will be served the previous latest update on the branch, even if that update
1359
- is itself being rolled out. The specified number must be an integer between 1 and
1360
- 100. When not specified, this defaults to 100.
1361
- --skip-bundler Skip running Expo CLI to bundle the app before publishing
1470
+ -m, --message=<value> A short message describing the update
1471
+ -p, --platform=(android|ios|all) [default: all]
1472
+ --auto Use the current git branch and commit message for the EAS branch and
1473
+ update message
1474
+ --branch=<value> Branch to publish the update group on
1475
+ --channel=<value> Channel that the published update should affect
1476
+ --clear-cache Clear the bundler cache before publishing
1477
+ --emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed
1478
+ information about the generated updates
1479
+ --environment=(development|preview|production) Environment to use for the server-side defined EAS environment
1480
+ variables during command execution.
1481
+ --input-dir=<value> [default: dist] Location of the bundle
1482
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1483
+ --non-interactive Run the command in non-interactive mode.
1484
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the
1485
+ certificate in expo-updates' configuration. Defaults to a file named
1486
+ "private-key.pem" in the certificate's directory. Only relevant if you
1487
+ are using code signing: https://docs.expo.dev/eas-update/code-signing/
1488
+ --rollout-percentage=<value> Percentage of users this update should be immediately available to.
1489
+ Users not in the rollout will be served the previous latest update on
1490
+ the branch, even if that update is itself being rolled out. The
1491
+ specified number must be an integer between 1 and 100. When not
1492
+ specified, this defaults to 100.
1493
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
1362
1494
 
1363
1495
  DESCRIPTION
1364
1496
  publish an update group
1365
1497
  ```
1366
1498
 
1367
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/index.ts)_
1499
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/index.ts)_
1368
1500
 
1369
1501
  ## `eas update:configure`
1370
1502
 
@@ -1372,17 +1504,19 @@ configure the project to support EAS Update
1372
1504
 
1373
1505
  ```
1374
1506
  USAGE
1375
- $ eas update:configure [-p android|ios|all] [--non-interactive]
1507
+ $ eas update:configure [-p android|ios|all] [--environment development|preview|production] [--non-interactive]
1376
1508
 
1377
1509
  FLAGS
1378
- -p, --platform=(android|ios|all) [default: all] Platform to configure
1379
- --non-interactive Run the command in non-interactive mode.
1510
+ -p, --platform=(android|ios|all) [default: all] Platform to configure
1511
+ --environment=(development|preview|production) Environment to use for the server-side defined EAS environment
1512
+ variables during command execution.
1513
+ --non-interactive Run the command in non-interactive mode.
1380
1514
 
1381
1515
  DESCRIPTION
1382
1516
  configure the project to support EAS Update
1383
1517
  ```
1384
1518
 
1385
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/configure.ts)_
1519
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/configure.ts)_
1386
1520
 
1387
1521
  ## `eas update:delete GROUPID`
1388
1522
 
@@ -1403,7 +1537,7 @@ DESCRIPTION
1403
1537
  delete all the updates in an update group
1404
1538
  ```
1405
1539
 
1406
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/delete.ts)_
1540
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/delete.ts)_
1407
1541
 
1408
1542
  ## `eas update:edit [GROUPID]`
1409
1543
 
@@ -1427,7 +1561,7 @@ DESCRIPTION
1427
1561
  edit all the updates in an update group
1428
1562
  ```
1429
1563
 
1430
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/edit.ts)_
1564
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/edit.ts)_
1431
1565
 
1432
1566
  ## `eas update:list`
1433
1567
 
@@ -1449,7 +1583,7 @@ DESCRIPTION
1449
1583
  view the recent updates
1450
1584
  ```
1451
1585
 
1452
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/list.ts)_
1586
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/list.ts)_
1453
1587
 
1454
1588
  ## `eas update:republish`
1455
1589
 
@@ -1481,7 +1615,7 @@ DESCRIPTION
1481
1615
  roll back to an existing update
1482
1616
  ```
1483
1617
 
1484
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/republish.ts)_
1618
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/republish.ts)_
1485
1619
 
1486
1620
  ## `eas update:roll-back-to-embedded`
1487
1621
 
@@ -1509,7 +1643,7 @@ DESCRIPTION
1509
1643
  roll back to the embedded update
1510
1644
  ```
1511
1645
 
1512
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1646
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1513
1647
 
1514
1648
  ## `eas update:rollback`
1515
1649
 
@@ -1529,7 +1663,7 @@ DESCRIPTION
1529
1663
  roll back to an embedded update or an existing update
1530
1664
  ```
1531
1665
 
1532
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/rollback.ts)_
1666
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/rollback.ts)_
1533
1667
 
1534
1668
  ## `eas update:view GROUPID`
1535
1669
 
@@ -1549,7 +1683,7 @@ DESCRIPTION
1549
1683
  update group details
1550
1684
  ```
1551
1685
 
1552
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/view.ts)_
1686
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/view.ts)_
1553
1687
 
1554
1688
  ## `eas webhook:create`
1555
1689
 
@@ -1570,7 +1704,7 @@ DESCRIPTION
1570
1704
  create a webhook
1571
1705
  ```
1572
1706
 
1573
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/create.ts)_
1707
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/create.ts)_
1574
1708
 
1575
1709
  ## `eas webhook:delete [ID]`
1576
1710
 
@@ -1590,7 +1724,7 @@ DESCRIPTION
1590
1724
  delete a webhook
1591
1725
  ```
1592
1726
 
1593
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1727
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1594
1728
 
1595
1729
  ## `eas webhook:list`
1596
1730
 
@@ -1608,7 +1742,7 @@ DESCRIPTION
1608
1742
  list webhooks
1609
1743
  ```
1610
1744
 
1611
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/list.ts)_
1745
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/list.ts)_
1612
1746
 
1613
1747
  ## `eas webhook:update`
1614
1748
 
@@ -1630,7 +1764,7 @@ DESCRIPTION
1630
1764
  update a webhook
1631
1765
  ```
1632
1766
 
1633
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/update.ts)_
1767
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/update.ts)_
1634
1768
 
1635
1769
  ## `eas webhook:view ID`
1636
1770
 
@@ -1647,7 +1781,7 @@ DESCRIPTION
1647
1781
  view a webhook
1648
1782
  ```
1649
1783
 
1650
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/view.ts)_
1784
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/view.ts)_
1651
1785
 
1652
1786
  ## `eas whoami`
1653
1787
 
@@ -1682,7 +1816,7 @@ DESCRIPTION
1682
1816
  create a new workflow configuration YAML file
1683
1817
  ```
1684
1818
 
1685
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/create.ts)_
1819
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/create.ts)_
1686
1820
 
1687
1821
  ## `eas workflow:run [FILE]`
1688
1822
 
@@ -1702,7 +1836,7 @@ DESCRIPTION
1702
1836
  Run an EAS workflow
1703
1837
  ```
1704
1838
 
1705
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/run.ts)_
1839
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/run.ts)_
1706
1840
 
1707
1841
  ## `eas workflow:validate PATH`
1708
1842
 
@@ -1722,5 +1856,5 @@ DESCRIPTION
1722
1856
  validate a workflow configuration yaml file
1723
1857
  ```
1724
1858
 
1725
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/validate.ts)_
1859
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/validate.ts)_
1726
1860
  <!-- commandsstop -->