eas-cli 16.22.0 → 16.23.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 (47) hide show
  1. package/README.md +208 -207
  2. package/build/build/android/graphql.js +1 -2
  3. package/build/build/evaluateConfigWithEnvVarsAsync.js +5 -11
  4. package/build/build/ios/graphql.js +1 -2
  5. package/build/build/utils/environment.d.ts +1 -4
  6. package/build/build/utils/environment.js +7 -24
  7. package/build/commandUtils/EasCommand.d.ts +1 -2
  8. package/build/commandUtils/context/ContextField.d.ts +1 -2
  9. package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.d.ts +1 -2
  10. package/build/commandUtils/context/contextUtils/loadServerSideEnvironmentVariablesAsync.js +3 -8
  11. package/build/commandUtils/flags.d.ts +3 -5
  12. package/build/commandUtils/flags.js +8 -22
  13. package/build/commands/build/resign.d.ts +2 -3
  14. package/build/commands/deploy/index.d.ts +1 -2
  15. package/build/commands/env/create.d.ts +1 -2
  16. package/build/commands/env/create.js +12 -14
  17. package/build/commands/env/delete.d.ts +1 -2
  18. package/build/commands/env/delete.js +2 -6
  19. package/build/commands/env/exec.js +6 -7
  20. package/build/commands/env/get.d.ts +1 -2
  21. package/build/commands/env/get.js +4 -6
  22. package/build/commands/env/list.d.ts +1 -2
  23. package/build/commands/env/list.js +8 -6
  24. package/build/commands/env/pull.d.ts +1 -1
  25. package/build/commands/env/pull.js +8 -8
  26. package/build/commands/env/push.d.ts +6 -4
  27. package/build/commands/env/push.js +42 -30
  28. package/build/commands/env/update.d.ts +2 -3
  29. package/build/commands/env/update.js +7 -8
  30. package/build/commands/fingerprint/compare.d.ts +1 -2
  31. package/build/commands/fingerprint/compare.js +1 -1
  32. package/build/commands/fingerprint/generate.d.ts +1 -2
  33. package/build/commands/fingerprint/generate.js +1 -1
  34. package/build/commands/update/configure.d.ts +1 -1
  35. package/build/commands/update/configure.js +1 -1
  36. package/build/commands/update/index.d.ts +1 -2
  37. package/build/commands/update/index.js +1 -1
  38. package/build/graphql/generated.d.ts +14 -0
  39. package/build/graphql/queries/EnvironmentVariablesQuery.d.ts +6 -6
  40. package/build/graphql/queries/EnvironmentVariablesQuery.js +15 -0
  41. package/build/utils/prompts.d.ts +8 -5
  42. package/build/utils/prompts.js +69 -10
  43. package/build/utils/variableUtils.d.ts +1 -3
  44. package/build/utils/variableUtils.js +1 -6
  45. package/build/worker/assets.d.ts +1 -2
  46. package/oclif.manifest.json +36 -110
  47. package/package.json +4 -4
package/README.md CHANGED
@@ -173,7 +173,7 @@ ALIASES
173
173
  $ eas login
174
174
  ```
175
175
 
176
- _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/account/login.ts)_
176
+ _See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/account/login.ts)_
177
177
 
178
178
  ## `eas account:logout`
179
179
 
@@ -190,7 +190,7 @@ ALIASES
190
190
  $ eas logout
191
191
  ```
192
192
 
193
- _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/account/logout.ts)_
193
+ _See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/account/logout.ts)_
194
194
 
195
195
  ## `eas account:view`
196
196
 
@@ -207,7 +207,7 @@ ALIASES
207
207
  $ eas whoami
208
208
  ```
209
209
 
210
- _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/account/view.ts)_
210
+ _See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/account/view.ts)_
211
211
 
212
212
  ## `eas analytics [STATUS]`
213
213
 
@@ -221,7 +221,7 @@ DESCRIPTION
221
221
  display or change analytics settings
222
222
  ```
223
223
 
224
- _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/analytics.ts)_
224
+ _See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/analytics.ts)_
225
225
 
226
226
  ## `eas autocomplete [SHELL]`
227
227
 
@@ -273,7 +273,7 @@ DESCRIPTION
273
273
  create a branch
274
274
  ```
275
275
 
276
- _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/branch/create.ts)_
276
+ _See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/branch/create.ts)_
277
277
 
278
278
  ## `eas branch:delete [NAME]`
279
279
 
@@ -294,7 +294,7 @@ DESCRIPTION
294
294
  delete a branch
295
295
  ```
296
296
 
297
- _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/branch/delete.ts)_
297
+ _See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/branch/delete.ts)_
298
298
 
299
299
  ## `eas branch:list`
300
300
 
@@ -314,7 +314,7 @@ DESCRIPTION
314
314
  list all branches
315
315
  ```
316
316
 
317
- _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/branch/list.ts)_
317
+ _See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/branch/list.ts)_
318
318
 
319
319
  ## `eas branch:rename`
320
320
 
@@ -334,7 +334,7 @@ DESCRIPTION
334
334
  rename a branch
335
335
  ```
336
336
 
337
- _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/branch/rename.ts)_
337
+ _See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/branch/rename.ts)_
338
338
 
339
339
  ## `eas branch:view [NAME]`
340
340
 
@@ -357,7 +357,7 @@ DESCRIPTION
357
357
  view a branch
358
358
  ```
359
359
 
360
- _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/branch/view.ts)_
360
+ _See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/branch/view.ts)_
361
361
 
362
362
  ## `eas build`
363
363
 
@@ -398,7 +398,7 @@ DESCRIPTION
398
398
  start a build
399
399
  ```
400
400
 
401
- _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/index.ts)_
401
+ _See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/index.ts)_
402
402
 
403
403
  ## `eas build:cancel [BUILD_ID]`
404
404
 
@@ -417,7 +417,7 @@ DESCRIPTION
417
417
  cancel a build
418
418
  ```
419
419
 
420
- _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/cancel.ts)_
420
+ _See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/cancel.ts)_
421
421
 
422
422
  ## `eas build:configure`
423
423
 
@@ -434,7 +434,7 @@ DESCRIPTION
434
434
  configure the project to support EAS Build
435
435
  ```
436
436
 
437
- _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/configure.ts)_
437
+ _See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/configure.ts)_
438
438
 
439
439
  ## `eas build:delete [BUILD_ID]`
440
440
 
@@ -453,7 +453,7 @@ DESCRIPTION
453
453
  delete a build
454
454
  ```
455
455
 
456
- _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/delete.ts)_
456
+ _See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/delete.ts)_
457
457
 
458
458
  ## `eas build:dev`
459
459
 
@@ -473,7 +473,7 @@ DESCRIPTION
473
473
  run dev client simulator/emulator build with matching fingerprint or create a new one
474
474
  ```
475
475
 
476
- _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/dev.ts)_
476
+ _See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/dev.ts)_
477
477
 
478
478
  ## `eas build:download`
479
479
 
@@ -494,7 +494,7 @@ DESCRIPTION
494
494
  download simulator/emulator builds for a given fingerprint hash
495
495
  ```
496
496
 
497
- _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/download.ts)_
497
+ _See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/download.ts)_
498
498
 
499
499
  ## `eas build:inspect`
500
500
 
@@ -529,7 +529,7 @@ DESCRIPTION
529
529
  inspect the state of the project at specific build stages, useful for troubleshooting
530
530
  ```
531
531
 
532
- _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/inspect.ts)_
532
+ _See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/inspect.ts)_
533
533
 
534
534
  ## `eas build:list`
535
535
 
@@ -581,7 +581,7 @@ DESCRIPTION
581
581
  list all builds for your project
582
582
  ```
583
583
 
584
- _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/list.ts)_
584
+ _See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/list.ts)_
585
585
 
586
586
  ## `eas build:resign`
587
587
 
@@ -610,7 +610,7 @@ DESCRIPTION
610
610
  re-sign a build archive
611
611
  ```
612
612
 
613
- _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/resign.ts)_
613
+ _See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/resign.ts)_
614
614
 
615
615
  ## `eas build:run`
616
616
 
@@ -636,7 +636,7 @@ DESCRIPTION
636
636
  run simulator/emulator builds from eas-cli
637
637
  ```
638
638
 
639
- _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/run.ts)_
639
+ _See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/run.ts)_
640
640
 
641
641
  ## `eas build:submit`
642
642
 
@@ -690,7 +690,7 @@ DESCRIPTION
690
690
  get the latest version from EAS servers
691
691
  ```
692
692
 
693
- _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/version/get.ts)_
693
+ _See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/version/get.ts)_
694
694
 
695
695
  ## `eas build:version:set`
696
696
 
@@ -709,7 +709,7 @@ DESCRIPTION
709
709
  update version of an app
710
710
  ```
711
711
 
712
- _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/version/set.ts)_
712
+ _See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/version/set.ts)_
713
713
 
714
714
  ## `eas build:version:sync`
715
715
 
@@ -728,7 +728,7 @@ DESCRIPTION
728
728
  update a version in native code with a value stored on EAS servers
729
729
  ```
730
730
 
731
- _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/version/sync.ts)_
731
+ _See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/version/sync.ts)_
732
732
 
733
733
  ## `eas build:view [BUILD_ID]`
734
734
 
@@ -745,7 +745,7 @@ DESCRIPTION
745
745
  view a build for your project
746
746
  ```
747
747
 
748
- _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/build/view.ts)_
748
+ _See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/build/view.ts)_
749
749
 
750
750
  ## `eas channel:create [NAME]`
751
751
 
@@ -766,7 +766,7 @@ DESCRIPTION
766
766
  create a channel
767
767
  ```
768
768
 
769
- _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/create.ts)_
769
+ _See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/create.ts)_
770
770
 
771
771
  ## `eas channel:delete [NAME]`
772
772
 
@@ -787,7 +787,7 @@ DESCRIPTION
787
787
  Delete a channel
788
788
  ```
789
789
 
790
- _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/delete.ts)_
790
+ _See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/delete.ts)_
791
791
 
792
792
  ## `eas channel:edit [NAME]`
793
793
 
@@ -809,7 +809,7 @@ DESCRIPTION
809
809
  point a channel at a new branch
810
810
  ```
811
811
 
812
- _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/edit.ts)_
812
+ _See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/edit.ts)_
813
813
 
814
814
  ## `eas channel:list`
815
815
 
@@ -829,7 +829,7 @@ DESCRIPTION
829
829
  list all channels
830
830
  ```
831
831
 
832
- _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/list.ts)_
832
+ _See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/list.ts)_
833
833
 
834
834
  ## `eas channel:pause [NAME]`
835
835
 
@@ -851,7 +851,7 @@ DESCRIPTION
851
851
  pause a channel to stop it from sending updates
852
852
  ```
853
853
 
854
- _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/pause.ts)_
854
+ _See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/pause.ts)_
855
855
 
856
856
  ## `eas channel:resume [NAME]`
857
857
 
@@ -873,7 +873,7 @@ DESCRIPTION
873
873
  resume a channel to start sending updates
874
874
  ```
875
875
 
876
- _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/resume.ts)_
876
+ _See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/resume.ts)_
877
877
 
878
878
  ## `eas channel:rollout [CHANNEL]`
879
879
 
@@ -906,7 +906,7 @@ DESCRIPTION
906
906
  Roll a new branch out on a channel incrementally.
907
907
  ```
908
908
 
909
- _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/rollout.ts)_
909
+ _See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/rollout.ts)_
910
910
 
911
911
  ## `eas channel:view [NAME]`
912
912
 
@@ -929,7 +929,7 @@ DESCRIPTION
929
929
  view a channel
930
930
  ```
931
931
 
932
- _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/channel/view.ts)_
932
+ _See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/channel/view.ts)_
933
933
 
934
934
  ## `eas config`
935
935
 
@@ -950,7 +950,7 @@ DESCRIPTION
950
950
  display project configuration (app.json + eas.json)
951
951
  ```
952
952
 
953
- _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/config.ts)_
953
+ _See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/config.ts)_
954
954
 
955
955
  ## `eas credentials`
956
956
 
@@ -967,7 +967,7 @@ DESCRIPTION
967
967
  manage credentials
968
968
  ```
969
969
 
970
- _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/credentials/index.ts)_
970
+ _See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/credentials/index.ts)_
971
971
 
972
972
  ## `eas credentials:configure-build`
973
973
 
@@ -985,7 +985,7 @@ DESCRIPTION
985
985
  Set up credentials for building your project.
986
986
  ```
987
987
 
988
- _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
988
+ _See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
989
989
 
990
990
  ## `eas deploy [options]`
991
991
 
@@ -997,14 +997,14 @@ USAGE
997
997
  $ eas deploy --prod
998
998
 
999
999
  FLAGS
1000
- --alias=name Custom alias to assign to the new deployment.
1001
- --dry-run Outputs a tarball of the new deployment instead of uploading it.
1002
- --environment=(development|preview|production) Environment variable's environment
1003
- --export-dir=dir [default: dist] Directory where the Expo project was exported.
1004
- --id=xyz123 Custom unique identifier for the new deployment.
1005
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1006
- --non-interactive Run the command in non-interactive mode.
1007
- --prod Create a new production deployment.
1000
+ --alias=name Custom alias to assign to the new deployment.
1001
+ --dry-run Outputs a tarball of the new deployment instead of uploading it.
1002
+ --environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
1003
+ --export-dir=dir [default: dist] Directory where the Expo project was exported.
1004
+ --id=xyz123 Custom unique identifier for the new deployment.
1005
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1006
+ --non-interactive Run the command in non-interactive mode.
1007
+ --prod Create a new production deployment.
1008
1008
 
1009
1009
  DESCRIPTION
1010
1010
  deploy your Expo Router web build and API Routes
@@ -1013,7 +1013,7 @@ ALIASES
1013
1013
  $ eas worker:deploy
1014
1014
  ```
1015
1015
 
1016
- _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/deploy/index.ts)_
1016
+ _See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/deploy/index.ts)_
1017
1017
 
1018
1018
  ## `eas deploy:alias`
1019
1019
 
@@ -1038,7 +1038,7 @@ ALIASES
1038
1038
  $ eas deploy:promote
1039
1039
  ```
1040
1040
 
1041
- _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1041
+ _See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
1042
1042
 
1043
1043
  ## `eas deploy:alias:delete [ALIAS_NAME]`
1044
1044
 
@@ -1059,7 +1059,7 @@ ALIASES
1059
1059
  $ eas worker:alias:delete
1060
1060
  ```
1061
1061
 
1062
- _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1062
+ _See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
1063
1063
 
1064
1064
  ## `eas deploy:delete [DEPLOYMENT_ID]`
1065
1065
 
@@ -1080,7 +1080,7 @@ ALIASES
1080
1080
  $ eas worker:delete
1081
1081
  ```
1082
1082
 
1083
- _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1083
+ _See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/deploy/delete.ts)_
1084
1084
 
1085
1085
  ## `eas deploy:promote`
1086
1086
 
@@ -1117,7 +1117,7 @@ DESCRIPTION
1117
1117
  register new Apple Devices to use for internal distribution
1118
1118
  ```
1119
1119
 
1120
- _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/device/create.ts)_
1120
+ _See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/device/create.ts)_
1121
1121
 
1122
1122
  ## `eas device:delete`
1123
1123
 
@@ -1137,7 +1137,7 @@ DESCRIPTION
1137
1137
  remove a registered device from your account
1138
1138
  ```
1139
1139
 
1140
- _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/device/delete.ts)_
1140
+ _See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/device/delete.ts)_
1141
1141
 
1142
1142
  ## `eas device:list`
1143
1143
 
@@ -1158,7 +1158,7 @@ DESCRIPTION
1158
1158
  list all registered devices for your account
1159
1159
  ```
1160
1160
 
1161
- _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/device/list.ts)_
1161
+ _See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/device/list.ts)_
1162
1162
 
1163
1163
  ## `eas device:rename`
1164
1164
 
@@ -1179,7 +1179,7 @@ DESCRIPTION
1179
1179
  rename a registered device
1180
1180
  ```
1181
1181
 
1182
- _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/device/rename.ts)_
1182
+ _See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/device/rename.ts)_
1183
1183
 
1184
1184
  ## `eas device:view [UDID]`
1185
1185
 
@@ -1193,7 +1193,7 @@ DESCRIPTION
1193
1193
  view a device for your project
1194
1194
  ```
1195
1195
 
1196
- _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/device/view.ts)_
1196
+ _See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/device/view.ts)_
1197
1197
 
1198
1198
  ## `eas diagnostics`
1199
1199
 
@@ -1207,7 +1207,7 @@ DESCRIPTION
1207
1207
  display environment info
1208
1208
  ```
1209
1209
 
1210
- _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/diagnostics.ts)_
1210
+ _See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/diagnostics.ts)_
1211
1211
 
1212
1212
  ## `eas env:create [ENVIRONMENT]`
1213
1213
 
@@ -1216,27 +1216,28 @@ create an environment variable for the current project or account
1216
1216
  ```
1217
1217
  USAGE
1218
1218
  $ eas env:create [ENVIRONMENT] [--name <value>] [--value <value>] [--force] [--type string|file] [--visibility
1219
- plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
1220
- [--non-interactive]
1219
+ plaintext|sensitive|secret] [--scope project|account] [--environment <value>] [--non-interactive]
1221
1220
 
1222
1221
  ARGUMENTS
1223
- ENVIRONMENT Environment to create the variable in. One of 'production', 'preview', or 'development'.
1222
+ ENVIRONMENT Environment to create the variable in. Default environments are 'production', 'preview', and
1223
+ 'development'.
1224
1224
 
1225
1225
  FLAGS
1226
- --environment=(development|preview|production)... Environment variable's environment
1227
- --force Overwrite existing variable
1228
- --name=<value> Name of the variable
1229
- --non-interactive Run the command in non-interactive mode.
1230
- --scope=(project|account) [default: project] Scope for the variable
1231
- --type=(string|file) The type of variable
1232
- --value=<value> Text value or the variable
1233
- --visibility=(plaintext|sensitive|secret) Visibility of the variable
1226
+ --environment=<value>... Environment variable's environment, e.g. 'production', 'preview',
1227
+ 'development'
1228
+ --force Overwrite existing variable
1229
+ --name=<value> Name of the variable
1230
+ --non-interactive Run the command in non-interactive mode.
1231
+ --scope=(project|account) [default: project] Scope for the variable
1232
+ --type=(string|file) The type of variable
1233
+ --value=<value> Text value or the variable
1234
+ --visibility=(plaintext|sensitive|secret) Visibility of the variable
1234
1235
 
1235
1236
  DESCRIPTION
1236
1237
  create an environment variable for the current project or account
1237
1238
  ```
1238
1239
 
1239
- _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/create.ts)_
1240
+ _See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/create.ts)_
1240
1241
 
1241
1242
  ## `eas env:delete [ENVIRONMENT]`
1242
1243
 
@@ -1244,23 +1245,24 @@ delete an environment variable for the current project or account
1244
1245
 
1245
1246
  ```
1246
1247
  USAGE
1247
- $ eas env:delete [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1248
- development|preview|production] [--scope project|account] [--non-interactive]
1248
+ $ eas env:delete [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--scope
1249
+ project|account] [--non-interactive]
1249
1250
 
1250
1251
  ARGUMENTS
1251
- ENVIRONMENT Current environment of the variable to delete. One of 'production', 'preview', or 'development'.
1252
+ ENVIRONMENT Current environment of the variable to delete. Default environments are 'production', 'preview', and
1253
+ 'development'.
1252
1254
 
1253
1255
  FLAGS
1254
- --non-interactive Run the command in non-interactive mode.
1255
- --scope=(project|account) [default: project] Scope for the variable
1256
- --variable-environment=(development|preview|production) Current environment of the variable to delete
1257
- --variable-name=<value> Name of the variable to delete
1256
+ --non-interactive Run the command in non-interactive mode.
1257
+ --scope=(project|account) [default: project] Scope for the variable
1258
+ --variable-environment=<value> Current environment of the variable to delete
1259
+ --variable-name=<value> Name of the variable to delete
1258
1260
 
1259
1261
  DESCRIPTION
1260
1262
  delete an environment variable for the current project or account
1261
1263
  ```
1262
1264
 
1263
- _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/delete.ts)_
1265
+ _See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/delete.ts)_
1264
1266
 
1265
1267
  ## `eas env:exec ENVIRONMENT BASH_COMMAND`
1266
1268
 
@@ -1271,7 +1273,8 @@ USAGE
1271
1273
  $ eas env:exec ENVIRONMENT BASH_COMMAND [--non-interactive]
1272
1274
 
1273
1275
  ARGUMENTS
1274
- ENVIRONMENT Environment to execute the command in. One of 'production', 'preview', or 'development'.
1276
+ ENVIRONMENT Environment to execute the command in. Default environments are 'production', 'preview', and
1277
+ 'development'.
1275
1278
  BASH_COMMAND bash command to execute with the environment variables from the environment
1276
1279
 
1277
1280
  FLAGS
@@ -1281,7 +1284,7 @@ DESCRIPTION
1281
1284
  execute a command with environment variables from the selected environment
1282
1285
  ```
1283
1286
 
1284
- _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/exec.ts)_
1287
+ _See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/exec.ts)_
1285
1288
 
1286
1289
  ## `eas env:get [ENVIRONMENT]`
1287
1290
 
@@ -1289,24 +1292,24 @@ view an environment variable for the current project or account
1289
1292
 
1290
1293
  ```
1291
1294
  USAGE
1292
- $ eas env:get [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1293
- development|preview|production] [--format long|short] [--scope project|account] [--non-interactive]
1295
+ $ eas env:get [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--format
1296
+ long|short] [--scope project|account] [--non-interactive]
1294
1297
 
1295
1298
  ARGUMENTS
1296
- ENVIRONMENT Current environment of the variable. One of 'production', 'preview', or 'development'.
1299
+ ENVIRONMENT Current environment of the variable. Default environments are 'production', 'preview', and 'development'.
1297
1300
 
1298
1301
  FLAGS
1299
- --format=(long|short) [default: short] Output format
1300
- --non-interactive Run the command in non-interactive mode.
1301
- --scope=(project|account) [default: project] Scope for the variable
1302
- --variable-environment=(development|preview|production) Current environment of the variable
1303
- --variable-name=<value> Name of the variable
1302
+ --format=(long|short) [default: short] Output format
1303
+ --non-interactive Run the command in non-interactive mode.
1304
+ --scope=(project|account) [default: project] Scope for the variable
1305
+ --variable-environment=<value> Current environment of the variable
1306
+ --variable-name=<value> Name of the variable
1304
1307
 
1305
1308
  DESCRIPTION
1306
1309
  view an environment variable for the current project or account
1307
1310
  ```
1308
1311
 
1309
- _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/get.ts)_
1312
+ _See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/get.ts)_
1310
1313
 
1311
1314
  ## `eas env:list [ENVIRONMENT]`
1312
1315
 
@@ -1314,24 +1317,25 @@ list environment variables for the current project or account
1314
1317
 
1315
1318
  ```
1316
1319
  USAGE
1317
- $ eas env:list [ENVIRONMENT] [--include-sensitive] [--include-file-content] [--environment
1318
- development|preview|production] [--format long|short] [--scope project|account]
1320
+ $ eas env:list [ENVIRONMENT] [--include-sensitive] [--include-file-content] [--environment <value>]
1321
+ [--format long|short] [--scope project|account]
1319
1322
 
1320
1323
  ARGUMENTS
1321
- ENVIRONMENT Environment to list the variables from. One of 'production', 'preview', or 'development'.
1324
+ ENVIRONMENT Environment to list the variables from. Default environments are 'production', 'preview', and
1325
+ 'development'.
1322
1326
 
1323
1327
  FLAGS
1324
- --environment=(development|preview|production)... Environment variable's environment
1325
- --format=(long|short) [default: short] Output format
1326
- --include-file-content Display files content in the output
1327
- --include-sensitive Display sensitive values in the output
1328
- --scope=(project|account) [default: project] Scope for the variable
1328
+ --environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
1329
+ --format=(long|short) [default: short] Output format
1330
+ --include-file-content Display files content in the output
1331
+ --include-sensitive Display sensitive values in the output
1332
+ --scope=(project|account) [default: project] Scope for the variable
1329
1333
 
1330
1334
  DESCRIPTION
1331
1335
  list environment variables for the current project or account
1332
1336
  ```
1333
1337
 
1334
- _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/list.ts)_
1338
+ _See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/list.ts)_
1335
1339
 
1336
1340
  ## `eas env:pull [ENVIRONMENT]`
1337
1341
 
@@ -1339,22 +1343,21 @@ pull environment variables for the selected environment to .env file
1339
1343
 
1340
1344
  ```
1341
1345
  USAGE
1342
- $ eas env:pull [ENVIRONMENT] [--non-interactive] [--environment development|preview|production] [--path
1343
- <value>]
1346
+ $ eas env:pull [ENVIRONMENT] [--non-interactive] [--environment <value>] [--path <value>]
1344
1347
 
1345
1348
  ARGUMENTS
1346
- ENVIRONMENT Environment to pull variables from. One of 'production', 'preview', or 'development'.
1349
+ ENVIRONMENT Environment to pull variables from. Default environments are 'production', 'preview', and 'development'.
1347
1350
 
1348
1351
  FLAGS
1349
- --environment=(development|preview|production) Environment variable's environment
1350
- --non-interactive Run the command in non-interactive mode.
1351
- --path=<value> [default: .env.local] Path to the result `.env` file
1352
+ --environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
1353
+ --non-interactive Run the command in non-interactive mode.
1354
+ --path=<value> [default: .env.local] Path to the result `.env` file
1352
1355
 
1353
1356
  DESCRIPTION
1354
1357
  pull environment variables for the selected environment to .env file
1355
1358
  ```
1356
1359
 
1357
- _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/pull.ts)_
1360
+ _See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/pull.ts)_
1358
1361
 
1359
1362
  ## `eas env:push [ENVIRONMENT]`
1360
1363
 
@@ -1362,20 +1365,21 @@ push environment variables from .env file to the selected environment
1362
1365
 
1363
1366
  ```
1364
1367
  USAGE
1365
- $ eas env:push [ENVIRONMENT] [--environment development|preview|production] [--path <value>]
1368
+ $ eas env:push [ENVIRONMENT] [--environment <value>] [--path <value>] [--force]
1366
1369
 
1367
1370
  ARGUMENTS
1368
- ENVIRONMENT Environment to push variables to. One of 'production', 'preview', or 'development'.
1371
+ ENVIRONMENT Environment to push variables to. Default environments are 'production', 'preview', and 'development'.
1369
1372
 
1370
1373
  FLAGS
1371
- --environment=(development|preview|production)... Environment variable's environment
1372
- --path=<value> [default: .env.local] Path to the input `.env` file
1374
+ --environment=<value>... Environment variable's environment, e.g. 'production', 'preview', 'development'
1375
+ --force Skip confirmation and automatically override existing variables
1376
+ --path=<value> [default: .env.local] Path to the input `.env` file
1373
1377
 
1374
1378
  DESCRIPTION
1375
1379
  push environment variables from .env file to the selected environment
1376
1380
  ```
1377
1381
 
1378
- _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/push.ts)_
1382
+ _See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/push.ts)_
1379
1383
 
1380
1384
  ## `eas env:update [ENVIRONMENT]`
1381
1385
 
@@ -1383,30 +1387,31 @@ update an environment variable on the current project or account
1383
1387
 
1384
1388
  ```
1385
1389
  USAGE
1386
- $ eas env:update [ENVIRONMENT] [--variable-name <value>] [--variable-environment
1387
- development|preview|production] [--name <value>] [--value <value>] [--type string|file] [--visibility
1388
- plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
1389
- [--non-interactive]
1390
+ $ eas env:update [ENVIRONMENT] [--variable-name <value>] [--variable-environment <value>] [--name <value>]
1391
+ [--value <value>] [--type string|file] [--visibility plaintext|sensitive|secret] [--scope project|account]
1392
+ [--environment <value>] [--non-interactive]
1390
1393
 
1391
1394
  ARGUMENTS
1392
- ENVIRONMENT Current environment of the variable to update. One of 'production', 'preview', or 'development'.
1395
+ ENVIRONMENT Current environment of the variable to update. Default environments are 'production', 'preview', and
1396
+ 'development'.
1393
1397
 
1394
1398
  FLAGS
1395
- --environment=(development|preview|production)... Environment variable's environment
1396
- --name=<value> New name of the variable
1397
- --non-interactive Run the command in non-interactive mode.
1398
- --scope=(project|account) [default: project] Scope for the variable
1399
- --type=(string|file) The type of variable
1400
- --value=<value> New value or the variable
1401
- --variable-environment=(development|preview|production) Current environment of the variable to update
1402
- --variable-name=<value> Current name of the variable
1403
- --visibility=(plaintext|sensitive|secret) Visibility of the variable
1399
+ --environment=<value>... Environment variable's environment, e.g. 'production', 'preview',
1400
+ 'development'
1401
+ --name=<value> New name of the variable
1402
+ --non-interactive Run the command in non-interactive mode.
1403
+ --scope=(project|account) [default: project] Scope for the variable
1404
+ --type=(string|file) The type of variable
1405
+ --value=<value> New value or the variable
1406
+ --variable-environment=<value> Current environment of the variable to update
1407
+ --variable-name=<value> Current name of the variable
1408
+ --visibility=(plaintext|sensitive|secret) Visibility of the variable
1404
1409
 
1405
1410
  DESCRIPTION
1406
1411
  update an environment variable on the current project or account
1407
1412
  ```
1408
1413
 
1409
- _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/env/update.ts)_
1414
+ _See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/env/update.ts)_
1410
1415
 
1411
1416
  ## `eas fingerprint:compare [HASH1] [HASH2]`
1412
1417
 
@@ -1414,21 +1419,20 @@ compare fingerprints of the current project, builds, and updates
1414
1419
 
1415
1420
  ```
1416
1421
  USAGE
1417
- $ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--update-id <value>] [--open] [--environment
1418
- development|preview|production] [--json --non-interactive]
1422
+ $ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--update-id <value>] [--open] [--environment <value>]
1423
+ [--json --non-interactive]
1419
1424
 
1420
1425
  ARGUMENTS
1421
1426
  HASH1 If provided alone, HASH1 is compared against the current project's fingerprint.
1422
1427
  HASH2 If two hashes are provided, HASH1 is compared against HASH2.
1423
1428
 
1424
1429
  FLAGS
1425
- --build-id=<value>... Compare the fingerprint with the build with the specified ID
1426
- --environment=(development|preview|production) If generating a fingerprint from the local directory, use the
1427
- specified environment.
1428
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1429
- --non-interactive Run the command in non-interactive mode.
1430
- --open Open the fingerprint comparison in the browser
1431
- --update-id=<value>... Compare the fingerprint with the update with the specified ID
1430
+ --build-id=<value>... Compare the fingerprint with the build with the specified ID
1431
+ --environment=<value> If generating a fingerprint from the local directory, use the specified environment.
1432
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1433
+ --non-interactive Run the command in non-interactive mode.
1434
+ --open Open the fingerprint comparison in the browser
1435
+ --update-id=<value>... Compare the fingerprint with the update with the specified ID
1432
1436
 
1433
1437
  DESCRIPTION
1434
1438
  compare fingerprints of the current project, builds, and updates
@@ -1451,7 +1455,7 @@ EXAMPLES
1451
1455
  $ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
1452
1456
  ```
1453
1457
 
1454
- _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1458
+ _See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
1455
1459
 
1456
1460
  ## `eas fingerprint:generate`
1457
1461
 
@@ -1459,15 +1463,14 @@ generate fingerprints from the current project
1459
1463
 
1460
1464
  ```
1461
1465
  USAGE
1462
- $ eas fingerprint:generate [-p android|ios] [--environment development|preview|production | -e <value>] [--json
1463
- --non-interactive]
1466
+ $ eas fingerprint:generate [-p android|ios] [--environment <value> | -e <value>] [--json --non-interactive]
1464
1467
 
1465
1468
  FLAGS
1466
- -e, --build-profile=<value> Name of the build profile from eas.json.
1469
+ -e, --build-profile=<value> Name of the build profile from eas.json.
1467
1470
  -p, --platform=(android|ios)
1468
- --environment=(development|preview|production) Environment variable's environment
1469
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1470
- --non-interactive Run the command in non-interactive mode.
1471
+ --environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
1472
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1473
+ --non-interactive Run the command in non-interactive mode.
1471
1474
 
1472
1475
  DESCRIPTION
1473
1476
  generate fingerprints from the current project
@@ -1482,7 +1485,7 @@ EXAMPLES
1482
1485
  $ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
1483
1486
  ```
1484
1487
 
1485
- _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1488
+ _See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
1486
1489
 
1487
1490
  ## `eas help [COMMAND]`
1488
1491
 
@@ -1590,7 +1593,7 @@ DESCRIPTION
1590
1593
  validate the local store configuration
1591
1594
  ```
1592
1595
 
1593
- _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1596
+ _See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/metadata/lint.ts)_
1594
1597
 
1595
1598
  ## `eas metadata:pull`
1596
1599
 
@@ -1607,7 +1610,7 @@ DESCRIPTION
1607
1610
  generate the local store configuration from the app stores
1608
1611
  ```
1609
1612
 
1610
- _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1613
+ _See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/metadata/pull.ts)_
1611
1614
 
1612
1615
  ## `eas metadata:push`
1613
1616
 
@@ -1624,7 +1627,7 @@ DESCRIPTION
1624
1627
  sync the local store configuration to the app stores
1625
1628
  ```
1626
1629
 
1627
- _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/metadata/push.ts)_
1630
+ _See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/metadata/push.ts)_
1628
1631
 
1629
1632
  ## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
1630
1633
 
@@ -1654,7 +1657,7 @@ DESCRIPTION
1654
1657
  open the project page in a web browser
1655
1658
  ```
1656
1659
 
1657
- _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/open.ts)_
1660
+ _See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/open.ts)_
1658
1661
 
1659
1662
  ## `eas project:info`
1660
1663
 
@@ -1668,7 +1671,7 @@ DESCRIPTION
1668
1671
  information about the current project
1669
1672
  ```
1670
1673
 
1671
- _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/project/info.ts)_
1674
+ _See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/project/info.ts)_
1672
1675
 
1673
1676
  ## `eas project:init`
1674
1677
 
@@ -1691,7 +1694,7 @@ ALIASES
1691
1694
  $ eas init
1692
1695
  ```
1693
1696
 
1694
- _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/project/init.ts)_
1697
+ _See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/project/init.ts)_
1695
1698
 
1696
1699
  ## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
1697
1700
 
@@ -1709,7 +1712,7 @@ ALIASES
1709
1712
  $ eas onboarding
1710
1713
  ```
1711
1714
 
1712
- _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1715
+ _See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/project/onboarding.ts)_
1713
1716
 
1714
1717
  ## `eas submit`
1715
1718
 
@@ -1744,7 +1747,7 @@ ALIASES
1744
1747
  $ eas build:submit
1745
1748
  ```
1746
1749
 
1747
- _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/submit.ts)_
1750
+ _See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/submit.ts)_
1748
1751
 
1749
1752
  ## `eas update`
1750
1753
 
@@ -1754,39 +1757,37 @@ publish an update group
1754
1757
  USAGE
1755
1758
  $ eas update [--branch <value>] [--channel <value>] [-m <value>] [--input-dir <value>] [--skip-bundler]
1756
1759
  [--clear-cache] [--emit-metadata] [--rollout-percentage <value>] [-p android|ios|all] [--auto] [--private-key-path
1757
- <value>] [--environment development|preview|production] [--json --non-interactive]
1758
-
1759
- FLAGS
1760
- -m, --message=<value> A short message describing the update
1761
- -p, --platform=(android|ios|all) [default: all]
1762
- --auto Use the current git branch and commit message for the EAS branch and
1763
- update message
1764
- --branch=<value> Branch to publish the update group on
1765
- --channel=<value> Channel that the published update should affect
1766
- --clear-cache Clear the bundler cache before publishing
1767
- --emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed
1768
- information about the generated updates
1769
- --environment=(development|preview|production) Environment to use for the server-side defined EAS environment
1770
- variables during command execution.
1771
- --input-dir=<value> [default: dist] Location of the bundle
1772
- --json Enable JSON output, non-JSON messages will be printed to stderr.
1773
- --non-interactive Run the command in non-interactive mode.
1774
- --private-key-path=<value> File containing the PEM-encoded private key corresponding to the
1775
- certificate in expo-updates' configuration. Defaults to a file named
1776
- "private-key.pem" in the certificate's directory. Only relevant if you
1777
- are using code signing: https://docs.expo.dev/eas-update/code-signing/
1778
- --rollout-percentage=<value> Percentage of users this update should be immediately available to.
1779
- Users not in the rollout will be served the previous latest update on
1780
- the branch, even if that update is itself being rolled out. The
1781
- specified number must be an integer between 1 and 100. When not
1782
- specified, this defaults to 100.
1783
- --skip-bundler Skip running Expo CLI to bundle the app before publishing
1760
+ <value>] [--environment <value>] [--json --non-interactive]
1761
+
1762
+ FLAGS
1763
+ -m, --message=<value> A short message describing the update
1764
+ -p, --platform=(android|ios|all) [default: all]
1765
+ --auto Use the current git branch and commit message for the EAS branch and update message
1766
+ --branch=<value> Branch to publish the update group on
1767
+ --channel=<value> Channel that the published update should affect
1768
+ --clear-cache Clear the bundler cache before publishing
1769
+ --emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed information about
1770
+ the generated updates
1771
+ --environment=<value> Environment to use for the server-side defined EAS environment variables during
1772
+ command execution, e.g. "production", "preview", "development"
1773
+ --input-dir=<value> [default: dist] Location of the bundle
1774
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
1775
+ --non-interactive Run the command in non-interactive mode.
1776
+ --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
1777
+ expo-updates' configuration. Defaults to a file named "private-key.pem" in the
1778
+ certificate's directory. Only relevant if you are using code signing:
1779
+ https://docs.expo.dev/eas-update/code-signing/
1780
+ --rollout-percentage=<value> Percentage of users this update should be immediately available to. Users not in the
1781
+ rollout will be served the previous latest update on the branch, even if that update
1782
+ is itself being rolled out. The specified number must be an integer between 1 and
1783
+ 100. When not specified, this defaults to 100.
1784
+ --skip-bundler Skip running Expo CLI to bundle the app before publishing
1784
1785
 
1785
1786
  DESCRIPTION
1786
1787
  publish an update group
1787
1788
  ```
1788
1789
 
1789
- _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/index.ts)_
1790
+ _See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/index.ts)_
1790
1791
 
1791
1792
  ## `eas update:configure`
1792
1793
 
@@ -1794,19 +1795,19 @@ configure the project to support EAS Update
1794
1795
 
1795
1796
  ```
1796
1797
  USAGE
1797
- $ eas update:configure [-p android|ios|all] [--environment development|preview|production] [--non-interactive]
1798
+ $ eas update:configure [-p android|ios|all] [--environment <value>] [--non-interactive]
1798
1799
 
1799
1800
  FLAGS
1800
- -p, --platform=(android|ios|all) [default: all] Platform to configure
1801
- --environment=(development|preview|production) Environment to use for the server-side defined EAS environment
1802
- variables during command execution.
1803
- --non-interactive Run the command in non-interactive mode.
1801
+ -p, --platform=(android|ios|all) [default: all] Platform to configure
1802
+ --environment=<value> Environment to use for the server-side defined EAS environment variables during
1803
+ command execution, e.g. "production", "preview", "development"
1804
+ --non-interactive Run the command in non-interactive mode.
1804
1805
 
1805
1806
  DESCRIPTION
1806
1807
  configure the project to support EAS Update
1807
1808
  ```
1808
1809
 
1809
- _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/configure.ts)_
1810
+ _See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/configure.ts)_
1810
1811
 
1811
1812
  ## `eas update:delete GROUPID`
1812
1813
 
@@ -1827,7 +1828,7 @@ DESCRIPTION
1827
1828
  delete all the updates in an update group
1828
1829
  ```
1829
1830
 
1830
- _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/delete.ts)_
1831
+ _See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/delete.ts)_
1831
1832
 
1832
1833
  ## `eas update:edit [GROUPID]`
1833
1834
 
@@ -1851,7 +1852,7 @@ DESCRIPTION
1851
1852
  edit all the updates in an update group
1852
1853
  ```
1853
1854
 
1854
- _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/edit.ts)_
1855
+ _See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/edit.ts)_
1855
1856
 
1856
1857
  ## `eas update:list`
1857
1858
 
@@ -1873,7 +1874,7 @@ DESCRIPTION
1873
1874
  view the recent updates
1874
1875
  ```
1875
1876
 
1876
- _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/list.ts)_
1877
+ _See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/list.ts)_
1877
1878
 
1878
1879
  ## `eas update:republish`
1879
1880
 
@@ -1909,7 +1910,7 @@ DESCRIPTION
1909
1910
  roll back to an existing update
1910
1911
  ```
1911
1912
 
1912
- _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/republish.ts)_
1913
+ _See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/republish.ts)_
1913
1914
 
1914
1915
  ## `eas update:revert-update-rollout`
1915
1916
 
@@ -1936,7 +1937,7 @@ DESCRIPTION
1936
1937
  revert a rollout update for a project
1937
1938
  ```
1938
1939
 
1939
- _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
1940
+ _See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
1940
1941
 
1941
1942
  ## `eas update:roll-back-to-embedded`
1942
1943
 
@@ -1964,7 +1965,7 @@ DESCRIPTION
1964
1965
  roll back to the embedded update
1965
1966
  ```
1966
1967
 
1967
- _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1968
+ _See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
1968
1969
 
1969
1970
  ## `eas update:rollback`
1970
1971
 
@@ -1985,7 +1986,7 @@ DESCRIPTION
1985
1986
  instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
1986
1987
  ```
1987
1988
 
1988
- _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/rollback.ts)_
1989
+ _See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/rollback.ts)_
1989
1990
 
1990
1991
  ## `eas update:view GROUPID`
1991
1992
 
@@ -2005,7 +2006,7 @@ DESCRIPTION
2005
2006
  update group details
2006
2007
  ```
2007
2008
 
2008
- _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/update/view.ts)_
2009
+ _See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/update/view.ts)_
2009
2010
 
2010
2011
  ## `eas upload`
2011
2012
 
@@ -2026,7 +2027,7 @@ DESCRIPTION
2026
2027
  upload a local build and generate a sharable link
2027
2028
  ```
2028
2029
 
2029
- _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/upload.ts)_
2030
+ _See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/upload.ts)_
2030
2031
 
2031
2032
  ## `eas webhook:create`
2032
2033
 
@@ -2047,7 +2048,7 @@ DESCRIPTION
2047
2048
  create a webhook
2048
2049
  ```
2049
2050
 
2050
- _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/webhook/create.ts)_
2051
+ _See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/webhook/create.ts)_
2051
2052
 
2052
2053
  ## `eas webhook:delete [ID]`
2053
2054
 
@@ -2067,7 +2068,7 @@ DESCRIPTION
2067
2068
  delete a webhook
2068
2069
  ```
2069
2070
 
2070
- _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2071
+ _See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/webhook/delete.ts)_
2071
2072
 
2072
2073
  ## `eas webhook:list`
2073
2074
 
@@ -2085,7 +2086,7 @@ DESCRIPTION
2085
2086
  list webhooks
2086
2087
  ```
2087
2088
 
2088
- _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/webhook/list.ts)_
2089
+ _See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/webhook/list.ts)_
2089
2090
 
2090
2091
  ## `eas webhook:update`
2091
2092
 
@@ -2107,7 +2108,7 @@ DESCRIPTION
2107
2108
  update a webhook
2108
2109
  ```
2109
2110
 
2110
- _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/webhook/update.ts)_
2111
+ _See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/webhook/update.ts)_
2111
2112
 
2112
2113
  ## `eas webhook:view ID`
2113
2114
 
@@ -2124,7 +2125,7 @@ DESCRIPTION
2124
2125
  view a webhook
2125
2126
  ```
2126
2127
 
2127
- _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/webhook/view.ts)_
2128
+ _See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/webhook/view.ts)_
2128
2129
 
2129
2130
  ## `eas whoami`
2130
2131
 
@@ -2212,14 +2213,14 @@ USAGE
2212
2213
  $ eas deploy --prod
2213
2214
 
2214
2215
  FLAGS
2215
- --alias=name Custom alias to assign to the new deployment.
2216
- --dry-run Outputs a tarball of the new deployment instead of uploading it.
2217
- --environment=(development|preview|production) Environment variable's environment
2218
- --export-dir=dir [default: dist] Directory where the Expo project was exported.
2219
- --id=xyz123 Custom unique identifier for the new deployment.
2220
- --json Enable JSON output, non-JSON messages will be printed to stderr.
2221
- --non-interactive Run the command in non-interactive mode.
2222
- --prod Create a new production deployment.
2216
+ --alias=name Custom alias to assign to the new deployment.
2217
+ --dry-run Outputs a tarball of the new deployment instead of uploading it.
2218
+ --environment=<value> Environment variable's environment, e.g. 'production', 'preview', 'development'
2219
+ --export-dir=dir [default: dist] Directory where the Expo project was exported.
2220
+ --id=xyz123 Custom unique identifier for the new deployment.
2221
+ --json Enable JSON output, non-JSON messages will be printed to stderr.
2222
+ --non-interactive Run the command in non-interactive mode.
2223
+ --prod Create a new production deployment.
2223
2224
 
2224
2225
  DESCRIPTION
2225
2226
  deploy your Expo Router web build and API Routes
@@ -2244,7 +2245,7 @@ DESCRIPTION
2244
2245
  to cancel.
2245
2246
  ```
2246
2247
 
2247
- _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2248
+ _See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
2248
2249
 
2249
2250
  ## `eas workflow:create [NAME]`
2250
2251
 
@@ -2264,7 +2265,7 @@ DESCRIPTION
2264
2265
  create a new workflow configuration YAML file
2265
2266
  ```
2266
2267
 
2267
- _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/create.ts)_
2268
+ _See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/create.ts)_
2268
2269
 
2269
2270
  ## `eas workflow:logs [ID]`
2270
2271
 
@@ -2288,7 +2289,7 @@ DESCRIPTION
2288
2289
  If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
2289
2290
  ```
2290
2291
 
2291
- _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/logs.ts)_
2292
+ _See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/logs.ts)_
2292
2293
 
2293
2294
  ## `eas workflow:run [FILE]`
2294
2295
 
@@ -2328,7 +2329,7 @@ FLAG DESCRIPTIONS
2328
2329
  Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
2329
2330
  ```
2330
2331
 
2331
- _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/run.ts)_
2332
+ _See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/run.ts)_
2332
2333
 
2333
2334
  ## `eas workflow:runs`
2334
2335
 
@@ -2353,7 +2354,7 @@ DESCRIPTION
2353
2354
  list recent workflow runs for this project, with their IDs, statuses, and timestamps
2354
2355
  ```
2355
2356
 
2356
- _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2357
+ _See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/runs.ts)_
2357
2358
 
2358
2359
  ## `eas workflow:validate PATH`
2359
2360
 
@@ -2373,7 +2374,7 @@ DESCRIPTION
2373
2374
  validate a workflow configuration yaml file
2374
2375
  ```
2375
2376
 
2376
- _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2377
+ _See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/validate.ts)_
2377
2378
 
2378
2379
  ## `eas workflow:view [ID]`
2379
2380
 
@@ -2395,5 +2396,5 @@ DESCRIPTION
2395
2396
  workflow runs for the current project.
2396
2397
  ```
2397
2398
 
2398
- _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.22.0/packages/eas-cli/src/commands/workflow/view.ts)_
2399
+ _See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.23.0/packages/eas-cli/src/commands/workflow/view.ts)_
2399
2400
  <!-- commandsstop -->