eas-cli 14.4.0 → 14.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -91
- package/build/build/android/version.js +1 -1
- package/build/build/build.js +4 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.js +10 -16
- package/build/build/ios/version.js +1 -1
- package/build/build/local.js +1 -1
- package/build/commands/build/list.d.ts +1 -0
- package/build/commands/build/list.js +4 -0
- package/build/commands/{worker → deploy}/alias.js +4 -4
- package/build/commands/{worker/deploy.js → deploy/index.js} +5 -5
- package/build/commands/env/exec.d.ts +1 -1
- package/build/commands/env/exec.js +18 -11
- package/build/commands/fingerprint/compare.js +14 -0
- package/build/commands/update/index.js +3 -6
- package/build/commands/update/roll-back-to-embedded.js +2 -2
- package/build/credentials/ios/appstore/resolveCredentials.js +6 -1
- package/build/graphql/generated.d.ts +188 -5
- package/build/graphql/generated.js +9 -1
- package/build/graphql/mutations/FingerprintMutation.d.ts +9 -0
- package/build/graphql/mutations/FingerprintMutation.js +29 -0
- package/build/project/publish.d.ts +4 -4
- package/build/project/publish.js +9 -8
- package/build/project/resolveRuntimeVersionAsync.d.ts +4 -4
- package/build/project/resolveRuntimeVersionAsync.js +4 -4
- package/build/worker/upload.js +19 -3
- package/oclif.manifest.json +158 -152
- package/package.json +5 -5
- /package/build/commands/{worker → deploy}/alias.d.ts +0 -0
- /package/build/commands/{worker/deploy.d.ts → deploy/index.d.ts} +0 -0
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ ALIASES
|
|
|
158
158
|
$ eas login
|
|
159
159
|
```
|
|
160
160
|
|
|
161
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
161
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
162
162
|
|
|
163
163
|
## `eas account:logout`
|
|
164
164
|
|
|
@@ -175,7 +175,7 @@ ALIASES
|
|
|
175
175
|
$ eas logout
|
|
176
176
|
```
|
|
177
177
|
|
|
178
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
178
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
179
179
|
|
|
180
180
|
## `eas account:view`
|
|
181
181
|
|
|
@@ -192,7 +192,7 @@ ALIASES
|
|
|
192
192
|
$ eas whoami
|
|
193
193
|
```
|
|
194
194
|
|
|
195
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
195
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
196
196
|
|
|
197
197
|
## `eas analytics [STATUS]`
|
|
198
198
|
|
|
@@ -206,7 +206,7 @@ DESCRIPTION
|
|
|
206
206
|
display or change analytics settings
|
|
207
207
|
```
|
|
208
208
|
|
|
209
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
209
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
210
210
|
|
|
211
211
|
## `eas autocomplete [SHELL]`
|
|
212
212
|
|
|
@@ -258,7 +258,7 @@ DESCRIPTION
|
|
|
258
258
|
create a branch
|
|
259
259
|
```
|
|
260
260
|
|
|
261
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
261
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
262
262
|
|
|
263
263
|
## `eas branch:delete [NAME]`
|
|
264
264
|
|
|
@@ -279,7 +279,7 @@ DESCRIPTION
|
|
|
279
279
|
delete a branch
|
|
280
280
|
```
|
|
281
281
|
|
|
282
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
282
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
283
283
|
|
|
284
284
|
## `eas branch:list`
|
|
285
285
|
|
|
@@ -299,7 +299,7 @@ DESCRIPTION
|
|
|
299
299
|
list all branches
|
|
300
300
|
```
|
|
301
301
|
|
|
302
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
302
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
303
303
|
|
|
304
304
|
## `eas branch:rename`
|
|
305
305
|
|
|
@@ -319,7 +319,7 @@ DESCRIPTION
|
|
|
319
319
|
rename a branch
|
|
320
320
|
```
|
|
321
321
|
|
|
322
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
322
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
323
323
|
|
|
324
324
|
## `eas branch:view [NAME]`
|
|
325
325
|
|
|
@@ -342,7 +342,7 @@ DESCRIPTION
|
|
|
342
342
|
view a branch
|
|
343
343
|
```
|
|
344
344
|
|
|
345
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
345
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
346
346
|
|
|
347
347
|
## `eas build`
|
|
348
348
|
|
|
@@ -379,7 +379,7 @@ DESCRIPTION
|
|
|
379
379
|
start a build
|
|
380
380
|
```
|
|
381
381
|
|
|
382
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
382
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
383
383
|
|
|
384
384
|
## `eas build:cancel [BUILD_ID]`
|
|
385
385
|
|
|
@@ -398,7 +398,7 @@ DESCRIPTION
|
|
|
398
398
|
cancel a build
|
|
399
399
|
```
|
|
400
400
|
|
|
401
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
401
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
402
402
|
|
|
403
403
|
## `eas build:configure`
|
|
404
404
|
|
|
@@ -415,7 +415,7 @@ DESCRIPTION
|
|
|
415
415
|
configure the project to support EAS Build
|
|
416
416
|
```
|
|
417
417
|
|
|
418
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
418
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
419
419
|
|
|
420
420
|
## `eas build:delete [BUILD_ID]`
|
|
421
421
|
|
|
@@ -434,7 +434,7 @@ DESCRIPTION
|
|
|
434
434
|
delete a build
|
|
435
435
|
```
|
|
436
436
|
|
|
437
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
437
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
438
438
|
|
|
439
439
|
## `eas build:inspect`
|
|
440
440
|
|
|
@@ -469,7 +469,7 @@ DESCRIPTION
|
|
|
469
469
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
470
470
|
```
|
|
471
471
|
|
|
472
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
472
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
473
473
|
|
|
474
474
|
## `eas build:list`
|
|
475
475
|
|
|
@@ -480,8 +480,8 @@ USAGE
|
|
|
480
480
|
$ eas build:list [-p android|ios|all] [--status
|
|
481
481
|
new|in-queue|in-progress|pending-cancel|errored|finished|canceled] [--distribution store|internal|simulator]
|
|
482
482
|
[--channel <value>] [--app-version <value>] [--app-build-version <value>] [--sdk-version <value>] [--runtime-version
|
|
483
|
-
<value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--
|
|
484
|
-
[--json --non-interactive] [--simulator]
|
|
483
|
+
<value>] [--app-identifier <value>] [-e <value>] [--git-commit-hash <value>] [--fingerprint-hash <value>] [--offset
|
|
484
|
+
<value>] [--limit <value>] [--json --non-interactive] [--simulator]
|
|
485
485
|
|
|
486
486
|
FLAGS
|
|
487
487
|
-e, --build-profile=<value> Filter only builds created with the
|
|
@@ -496,6 +496,8 @@ FLAGS
|
|
|
496
496
|
--channel=<value>
|
|
497
497
|
--distribution=(store|internal|simulator) Filter only builds with the specified
|
|
498
498
|
distribution type
|
|
499
|
+
--fingerprint-hash=<value> Filter only builds with the specified
|
|
500
|
+
fingerprint hash
|
|
499
501
|
--git-commit-hash=<value> Filter only builds created with the
|
|
500
502
|
specified git commit hash
|
|
501
503
|
--json Enable JSON output, non-JSON messages
|
|
@@ -519,7 +521,7 @@ DESCRIPTION
|
|
|
519
521
|
list all builds for your project
|
|
520
522
|
```
|
|
521
523
|
|
|
522
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
524
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
523
525
|
|
|
524
526
|
## `eas build:resign`
|
|
525
527
|
|
|
@@ -548,7 +550,7 @@ DESCRIPTION
|
|
|
548
550
|
re-sign a build archive
|
|
549
551
|
```
|
|
550
552
|
|
|
551
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
553
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
552
554
|
|
|
553
555
|
## `eas build:run`
|
|
554
556
|
|
|
@@ -574,7 +576,7 @@ DESCRIPTION
|
|
|
574
576
|
run simulator/emulator builds from eas-cli
|
|
575
577
|
```
|
|
576
578
|
|
|
577
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
579
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
578
580
|
|
|
579
581
|
## `eas build:submit`
|
|
580
582
|
|
|
@@ -624,7 +626,7 @@ DESCRIPTION
|
|
|
624
626
|
get the latest version from EAS servers
|
|
625
627
|
```
|
|
626
628
|
|
|
627
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
629
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
628
630
|
|
|
629
631
|
## `eas build:version:set`
|
|
630
632
|
|
|
@@ -643,7 +645,7 @@ DESCRIPTION
|
|
|
643
645
|
update version of an app
|
|
644
646
|
```
|
|
645
647
|
|
|
646
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
648
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
647
649
|
|
|
648
650
|
## `eas build:version:sync`
|
|
649
651
|
|
|
@@ -662,7 +664,7 @@ DESCRIPTION
|
|
|
662
664
|
update a version in native code with a value stored on EAS servers
|
|
663
665
|
```
|
|
664
666
|
|
|
665
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
667
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
666
668
|
|
|
667
669
|
## `eas build:view [BUILD_ID]`
|
|
668
670
|
|
|
@@ -679,7 +681,7 @@ DESCRIPTION
|
|
|
679
681
|
view a build for your project
|
|
680
682
|
```
|
|
681
683
|
|
|
682
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
684
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
683
685
|
|
|
684
686
|
## `eas channel:create [NAME]`
|
|
685
687
|
|
|
@@ -700,7 +702,7 @@ DESCRIPTION
|
|
|
700
702
|
create a channel
|
|
701
703
|
```
|
|
702
704
|
|
|
703
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
705
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
704
706
|
|
|
705
707
|
## `eas channel:edit [NAME]`
|
|
706
708
|
|
|
@@ -722,7 +724,7 @@ DESCRIPTION
|
|
|
722
724
|
point a channel at a new branch
|
|
723
725
|
```
|
|
724
726
|
|
|
725
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
727
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
726
728
|
|
|
727
729
|
## `eas channel:list`
|
|
728
730
|
|
|
@@ -742,7 +744,7 @@ DESCRIPTION
|
|
|
742
744
|
list all channels
|
|
743
745
|
```
|
|
744
746
|
|
|
745
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
746
748
|
|
|
747
749
|
## `eas channel:pause [NAME]`
|
|
748
750
|
|
|
@@ -764,7 +766,7 @@ DESCRIPTION
|
|
|
764
766
|
pause a channel to stop it from sending updates
|
|
765
767
|
```
|
|
766
768
|
|
|
767
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
769
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
768
770
|
|
|
769
771
|
## `eas channel:resume [NAME]`
|
|
770
772
|
|
|
@@ -786,7 +788,7 @@ DESCRIPTION
|
|
|
786
788
|
resume a channel to start sending updates
|
|
787
789
|
```
|
|
788
790
|
|
|
789
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
791
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
790
792
|
|
|
791
793
|
## `eas channel:rollout [CHANNEL]`
|
|
792
794
|
|
|
@@ -819,7 +821,7 @@ DESCRIPTION
|
|
|
819
821
|
Roll a new branch out on a channel incrementally.
|
|
820
822
|
```
|
|
821
823
|
|
|
822
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
824
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
823
825
|
|
|
824
826
|
## `eas channel:view [NAME]`
|
|
825
827
|
|
|
@@ -842,7 +844,7 @@ DESCRIPTION
|
|
|
842
844
|
view a channel
|
|
843
845
|
```
|
|
844
846
|
|
|
845
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
847
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
846
848
|
|
|
847
849
|
## `eas config`
|
|
848
850
|
|
|
@@ -863,7 +865,7 @@ DESCRIPTION
|
|
|
863
865
|
display project configuration (app.json + eas.json)
|
|
864
866
|
```
|
|
865
867
|
|
|
866
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
868
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/config.ts)_
|
|
867
869
|
|
|
868
870
|
## `eas credentials`
|
|
869
871
|
|
|
@@ -880,7 +882,7 @@ DESCRIPTION
|
|
|
880
882
|
manage credentials
|
|
881
883
|
```
|
|
882
884
|
|
|
883
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
885
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
884
886
|
|
|
885
887
|
## `eas credentials:configure-build`
|
|
886
888
|
|
|
@@ -898,11 +900,11 @@ DESCRIPTION
|
|
|
898
900
|
Set up credentials for building your project.
|
|
899
901
|
```
|
|
900
902
|
|
|
901
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
903
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
902
904
|
|
|
903
905
|
## `eas deploy [2m[options][22m`
|
|
904
906
|
|
|
905
|
-
Deploy your Expo web build
|
|
907
|
+
Deploy your Expo Router web build and API Routes.
|
|
906
908
|
|
|
907
909
|
```
|
|
908
910
|
USAGE
|
|
@@ -920,15 +922,17 @@ FLAGS
|
|
|
920
922
|
--prod Create a new production deployment.
|
|
921
923
|
|
|
922
924
|
DESCRIPTION
|
|
923
|
-
Deploy your Expo web build
|
|
925
|
+
Deploy your Expo Router web build and API Routes.
|
|
924
926
|
|
|
925
927
|
ALIASES
|
|
926
|
-
$ eas deploy
|
|
928
|
+
$ eas worker:deploy
|
|
927
929
|
```
|
|
928
930
|
|
|
931
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
932
|
+
|
|
929
933
|
## `eas deploy:alias`
|
|
930
934
|
|
|
931
|
-
Assign deployment aliases
|
|
935
|
+
Assign deployment aliases.
|
|
932
936
|
|
|
933
937
|
```
|
|
934
938
|
USAGE
|
|
@@ -942,16 +946,18 @@ FLAGS
|
|
|
942
946
|
--prod Promote an existing deployment to production.
|
|
943
947
|
|
|
944
948
|
DESCRIPTION
|
|
945
|
-
Assign deployment aliases
|
|
949
|
+
Assign deployment aliases.
|
|
946
950
|
|
|
947
951
|
ALIASES
|
|
948
|
-
$ eas
|
|
952
|
+
$ eas worker:alias
|
|
949
953
|
$ eas deploy:promote
|
|
950
954
|
```
|
|
951
955
|
|
|
956
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
957
|
+
|
|
952
958
|
## `eas deploy:promote`
|
|
953
959
|
|
|
954
|
-
Assign deployment aliases
|
|
960
|
+
Assign deployment aliases.
|
|
955
961
|
|
|
956
962
|
```
|
|
957
963
|
USAGE
|
|
@@ -965,10 +971,10 @@ FLAGS
|
|
|
965
971
|
--prod Promote an existing deployment to production.
|
|
966
972
|
|
|
967
973
|
DESCRIPTION
|
|
968
|
-
Assign deployment aliases
|
|
974
|
+
Assign deployment aliases.
|
|
969
975
|
|
|
970
976
|
ALIASES
|
|
971
|
-
$ eas
|
|
977
|
+
$ eas worker:alias
|
|
972
978
|
$ eas deploy:promote
|
|
973
979
|
```
|
|
974
980
|
|
|
@@ -984,7 +990,7 @@ DESCRIPTION
|
|
|
984
990
|
register new Apple Devices to use for internal distribution
|
|
985
991
|
```
|
|
986
992
|
|
|
987
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
993
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
988
994
|
|
|
989
995
|
## `eas device:delete`
|
|
990
996
|
|
|
@@ -1004,7 +1010,7 @@ DESCRIPTION
|
|
|
1004
1010
|
remove a registered device from your account
|
|
1005
1011
|
```
|
|
1006
1012
|
|
|
1007
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1013
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1008
1014
|
|
|
1009
1015
|
## `eas device:list`
|
|
1010
1016
|
|
|
@@ -1025,7 +1031,7 @@ DESCRIPTION
|
|
|
1025
1031
|
list all registered devices for your account
|
|
1026
1032
|
```
|
|
1027
1033
|
|
|
1028
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1034
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1029
1035
|
|
|
1030
1036
|
## `eas device:rename`
|
|
1031
1037
|
|
|
@@ -1046,7 +1052,7 @@ DESCRIPTION
|
|
|
1046
1052
|
rename a registered device
|
|
1047
1053
|
```
|
|
1048
1054
|
|
|
1049
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1055
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1050
1056
|
|
|
1051
1057
|
## `eas device:view [UDID]`
|
|
1052
1058
|
|
|
@@ -1060,7 +1066,7 @@ DESCRIPTION
|
|
|
1060
1066
|
view a device for your project
|
|
1061
1067
|
```
|
|
1062
1068
|
|
|
1063
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1069
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1064
1070
|
|
|
1065
1071
|
## `eas diagnostics`
|
|
1066
1072
|
|
|
@@ -1074,7 +1080,7 @@ DESCRIPTION
|
|
|
1074
1080
|
display environment info
|
|
1075
1081
|
```
|
|
1076
1082
|
|
|
1077
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1083
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1078
1084
|
|
|
1079
1085
|
## `eas env:create [ENVIRONMENT]`
|
|
1080
1086
|
|
|
@@ -1103,7 +1109,7 @@ DESCRIPTION
|
|
|
1103
1109
|
create an environment variable for the current project or account
|
|
1104
1110
|
```
|
|
1105
1111
|
|
|
1106
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1112
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1107
1113
|
|
|
1108
1114
|
## `eas env:delete [ENVIRONMENT]`
|
|
1109
1115
|
|
|
@@ -1127,7 +1133,7 @@ DESCRIPTION
|
|
|
1127
1133
|
delete an environment variable for the current project or account
|
|
1128
1134
|
```
|
|
1129
1135
|
|
|
1130
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1136
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1131
1137
|
|
|
1132
1138
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1133
1139
|
|
|
@@ -1148,7 +1154,7 @@ DESCRIPTION
|
|
|
1148
1154
|
execute a command with environment variables from the selected environment
|
|
1149
1155
|
```
|
|
1150
1156
|
|
|
1151
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1157
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1152
1158
|
|
|
1153
1159
|
## `eas env:get [ENVIRONMENT]`
|
|
1154
1160
|
|
|
@@ -1173,7 +1179,7 @@ DESCRIPTION
|
|
|
1173
1179
|
view an environment variable for the current project or account
|
|
1174
1180
|
```
|
|
1175
1181
|
|
|
1176
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1182
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1177
1183
|
|
|
1178
1184
|
## `eas env:list [ENVIRONMENT]`
|
|
1179
1185
|
|
|
@@ -1198,7 +1204,7 @@ DESCRIPTION
|
|
|
1198
1204
|
list environment variables for the current project or account
|
|
1199
1205
|
```
|
|
1200
1206
|
|
|
1201
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1207
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1202
1208
|
|
|
1203
1209
|
## `eas env:pull [ENVIRONMENT]`
|
|
1204
1210
|
|
|
@@ -1221,7 +1227,7 @@ DESCRIPTION
|
|
|
1221
1227
|
pull environment variables for the selected environment to .env file
|
|
1222
1228
|
```
|
|
1223
1229
|
|
|
1224
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1230
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1225
1231
|
|
|
1226
1232
|
## `eas env:push [ENVIRONMENT]`
|
|
1227
1233
|
|
|
@@ -1242,7 +1248,7 @@ DESCRIPTION
|
|
|
1242
1248
|
push environment variables from .env file to the selected environment
|
|
1243
1249
|
```
|
|
1244
1250
|
|
|
1245
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1251
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1246
1252
|
|
|
1247
1253
|
## `eas env:update [ENVIRONMENT]`
|
|
1248
1254
|
|
|
@@ -1273,7 +1279,7 @@ DESCRIPTION
|
|
|
1273
1279
|
update an environment variable on the current project or account
|
|
1274
1280
|
```
|
|
1275
1281
|
|
|
1276
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1282
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1277
1283
|
|
|
1278
1284
|
## `eas help [COMMAND]`
|
|
1279
1285
|
|
|
@@ -1381,7 +1387,7 @@ DESCRIPTION
|
|
|
1381
1387
|
validate the local store configuration
|
|
1382
1388
|
```
|
|
1383
1389
|
|
|
1384
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1390
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1385
1391
|
|
|
1386
1392
|
## `eas metadata:pull`
|
|
1387
1393
|
|
|
@@ -1398,7 +1404,7 @@ DESCRIPTION
|
|
|
1398
1404
|
generate the local store configuration from the app stores
|
|
1399
1405
|
```
|
|
1400
1406
|
|
|
1401
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1407
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1402
1408
|
|
|
1403
1409
|
## `eas metadata:push`
|
|
1404
1410
|
|
|
@@ -1415,7 +1421,7 @@ DESCRIPTION
|
|
|
1415
1421
|
sync the local store configuration to the app stores
|
|
1416
1422
|
```
|
|
1417
1423
|
|
|
1418
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1424
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1419
1425
|
|
|
1420
1426
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1421
1427
|
|
|
@@ -1445,7 +1451,7 @@ DESCRIPTION
|
|
|
1445
1451
|
open the project page in a web browser
|
|
1446
1452
|
```
|
|
1447
1453
|
|
|
1448
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1454
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/open.ts)_
|
|
1449
1455
|
|
|
1450
1456
|
## `eas project:info`
|
|
1451
1457
|
|
|
@@ -1459,7 +1465,7 @@ DESCRIPTION
|
|
|
1459
1465
|
information about the current project
|
|
1460
1466
|
```
|
|
1461
1467
|
|
|
1462
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1468
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1463
1469
|
|
|
1464
1470
|
## `eas project:init`
|
|
1465
1471
|
|
|
@@ -1482,7 +1488,7 @@ ALIASES
|
|
|
1482
1488
|
$ eas init
|
|
1483
1489
|
```
|
|
1484
1490
|
|
|
1485
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1491
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1486
1492
|
|
|
1487
1493
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1488
1494
|
|
|
@@ -1500,7 +1506,7 @@ ALIASES
|
|
|
1500
1506
|
$ eas onboarding
|
|
1501
1507
|
```
|
|
1502
1508
|
|
|
1503
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1509
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1504
1510
|
|
|
1505
1511
|
## `eas submit`
|
|
1506
1512
|
|
|
@@ -1531,7 +1537,7 @@ ALIASES
|
|
|
1531
1537
|
$ eas build:submit
|
|
1532
1538
|
```
|
|
1533
1539
|
|
|
1534
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1540
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1535
1541
|
|
|
1536
1542
|
## `eas update`
|
|
1537
1543
|
|
|
@@ -1573,7 +1579,7 @@ DESCRIPTION
|
|
|
1573
1579
|
publish an update group
|
|
1574
1580
|
```
|
|
1575
1581
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1582
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1577
1583
|
|
|
1578
1584
|
## `eas update:configure`
|
|
1579
1585
|
|
|
@@ -1593,7 +1599,7 @@ DESCRIPTION
|
|
|
1593
1599
|
configure the project to support EAS Update
|
|
1594
1600
|
```
|
|
1595
1601
|
|
|
1596
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1602
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1597
1603
|
|
|
1598
1604
|
## `eas update:delete GROUPID`
|
|
1599
1605
|
|
|
@@ -1614,7 +1620,7 @@ DESCRIPTION
|
|
|
1614
1620
|
delete all the updates in an update group
|
|
1615
1621
|
```
|
|
1616
1622
|
|
|
1617
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1623
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1618
1624
|
|
|
1619
1625
|
## `eas update:edit [GROUPID]`
|
|
1620
1626
|
|
|
@@ -1638,7 +1644,7 @@ DESCRIPTION
|
|
|
1638
1644
|
edit all the updates in an update group
|
|
1639
1645
|
```
|
|
1640
1646
|
|
|
1641
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1647
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1642
1648
|
|
|
1643
1649
|
## `eas update:list`
|
|
1644
1650
|
|
|
@@ -1660,7 +1666,7 @@ DESCRIPTION
|
|
|
1660
1666
|
view the recent updates
|
|
1661
1667
|
```
|
|
1662
1668
|
|
|
1663
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1669
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1664
1670
|
|
|
1665
1671
|
## `eas update:republish`
|
|
1666
1672
|
|
|
@@ -1692,7 +1698,7 @@ DESCRIPTION
|
|
|
1692
1698
|
roll back to an existing update
|
|
1693
1699
|
```
|
|
1694
1700
|
|
|
1695
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1701
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1696
1702
|
|
|
1697
1703
|
## `eas update:roll-back-to-embedded`
|
|
1698
1704
|
|
|
@@ -1720,7 +1726,7 @@ DESCRIPTION
|
|
|
1720
1726
|
roll back to the embedded update
|
|
1721
1727
|
```
|
|
1722
1728
|
|
|
1723
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1729
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1724
1730
|
|
|
1725
1731
|
## `eas update:rollback`
|
|
1726
1732
|
|
|
@@ -1740,7 +1746,7 @@ DESCRIPTION
|
|
|
1740
1746
|
roll back to an embedded update or an existing update
|
|
1741
1747
|
```
|
|
1742
1748
|
|
|
1743
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1749
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1744
1750
|
|
|
1745
1751
|
## `eas update:view GROUPID`
|
|
1746
1752
|
|
|
@@ -1760,7 +1766,7 @@ DESCRIPTION
|
|
|
1760
1766
|
update group details
|
|
1761
1767
|
```
|
|
1762
1768
|
|
|
1763
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1769
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1764
1770
|
|
|
1765
1771
|
## `eas webhook:create`
|
|
1766
1772
|
|
|
@@ -1781,7 +1787,7 @@ DESCRIPTION
|
|
|
1781
1787
|
create a webhook
|
|
1782
1788
|
```
|
|
1783
1789
|
|
|
1784
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1790
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1785
1791
|
|
|
1786
1792
|
## `eas webhook:delete [ID]`
|
|
1787
1793
|
|
|
@@ -1801,7 +1807,7 @@ DESCRIPTION
|
|
|
1801
1807
|
delete a webhook
|
|
1802
1808
|
```
|
|
1803
1809
|
|
|
1804
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1810
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1805
1811
|
|
|
1806
1812
|
## `eas webhook:list`
|
|
1807
1813
|
|
|
@@ -1819,7 +1825,7 @@ DESCRIPTION
|
|
|
1819
1825
|
list webhooks
|
|
1820
1826
|
```
|
|
1821
1827
|
|
|
1822
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1828
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1823
1829
|
|
|
1824
1830
|
## `eas webhook:update`
|
|
1825
1831
|
|
|
@@ -1841,7 +1847,7 @@ DESCRIPTION
|
|
|
1841
1847
|
update a webhook
|
|
1842
1848
|
```
|
|
1843
1849
|
|
|
1844
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1850
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1845
1851
|
|
|
1846
1852
|
## `eas webhook:view ID`
|
|
1847
1853
|
|
|
@@ -1858,7 +1864,7 @@ DESCRIPTION
|
|
|
1858
1864
|
view a webhook
|
|
1859
1865
|
```
|
|
1860
1866
|
|
|
1861
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1867
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1862
1868
|
|
|
1863
1869
|
## `eas whoami`
|
|
1864
1870
|
|
|
@@ -1877,7 +1883,7 @@ ALIASES
|
|
|
1877
1883
|
|
|
1878
1884
|
## `eas worker:alias`
|
|
1879
1885
|
|
|
1880
|
-
Assign deployment aliases
|
|
1886
|
+
Assign deployment aliases.
|
|
1881
1887
|
|
|
1882
1888
|
```
|
|
1883
1889
|
USAGE
|
|
@@ -1891,18 +1897,16 @@ FLAGS
|
|
|
1891
1897
|
--prod Promote an existing deployment to production.
|
|
1892
1898
|
|
|
1893
1899
|
DESCRIPTION
|
|
1894
|
-
Assign deployment aliases
|
|
1900
|
+
Assign deployment aliases.
|
|
1895
1901
|
|
|
1896
1902
|
ALIASES
|
|
1897
|
-
$ eas
|
|
1903
|
+
$ eas worker:alias
|
|
1898
1904
|
$ eas deploy:promote
|
|
1899
1905
|
```
|
|
1900
1906
|
|
|
1901
|
-
_See code: [packages/eas-cli/src/commands/worker/alias.ts](https://github.com/expo/eas-cli/blob/v14.4.0/packages/eas-cli/src/commands/worker/alias.ts)_
|
|
1902
|
-
|
|
1903
1907
|
## `eas deploy [2m[options][22m`
|
|
1904
1908
|
|
|
1905
|
-
Deploy your Expo web build
|
|
1909
|
+
Deploy your Expo Router web build and API Routes.
|
|
1906
1910
|
|
|
1907
1911
|
```
|
|
1908
1912
|
USAGE
|
|
@@ -1920,14 +1924,12 @@ FLAGS
|
|
|
1920
1924
|
--prod Create a new production deployment.
|
|
1921
1925
|
|
|
1922
1926
|
DESCRIPTION
|
|
1923
|
-
Deploy your Expo web build
|
|
1927
|
+
Deploy your Expo Router web build and API Routes.
|
|
1924
1928
|
|
|
1925
1929
|
ALIASES
|
|
1926
|
-
$ eas deploy
|
|
1930
|
+
$ eas worker:deploy
|
|
1927
1931
|
```
|
|
1928
1932
|
|
|
1929
|
-
_See code: [packages/eas-cli/src/commands/worker/deploy.ts](https://github.com/expo/eas-cli/blob/v14.4.0/packages/eas-cli/src/commands/worker/deploy.ts)_
|
|
1930
|
-
|
|
1931
1933
|
## `eas workflow:create [NAME]`
|
|
1932
1934
|
|
|
1933
1935
|
create a new workflow configuration YAML file
|
|
@@ -1946,7 +1948,7 @@ DESCRIPTION
|
|
|
1946
1948
|
create a new workflow configuration YAML file
|
|
1947
1949
|
```
|
|
1948
1950
|
|
|
1949
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1951
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
1950
1952
|
|
|
1951
1953
|
## `eas workflow:run [FILE]`
|
|
1952
1954
|
|
|
@@ -1966,7 +1968,7 @@ DESCRIPTION
|
|
|
1966
1968
|
Run an EAS workflow
|
|
1967
1969
|
```
|
|
1968
1970
|
|
|
1969
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1971
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
1970
1972
|
|
|
1971
1973
|
## `eas workflow:validate PATH`
|
|
1972
1974
|
|
|
@@ -1986,5 +1988,5 @@ DESCRIPTION
|
|
|
1986
1988
|
validate a workflow configuration yaml file
|
|
1987
1989
|
```
|
|
1988
1990
|
|
|
1989
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1991
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.5.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
1990
1992
|
<!-- commandsstop -->
|