eas-cli 16.25.1 → 16.27.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 +160 -85
- package/build/commandUtils/new/templates/readme-additions.md +1 -1
- package/build/commandUtils/workflow/utils.d.ts +12 -2
- package/build/commandUtils/workflow/utils.js +74 -3
- package/build/commands/env/update.js +17 -9
- package/build/commands/project/new.d.ts +0 -1
- package/build/commands/project/new.js +4 -5
- package/build/commands/update/index.js +3 -0
- package/build/commands/workflow/run.js +6 -64
- package/build/commands/workflow/status.d.ts +32 -0
- package/build/commands/workflow/status.js +109 -0
- package/build/graphql/generated.d.ts +176 -0
- package/build/graphql/generated.js +6 -1
- package/build/graphql/queries/AssetQuery.d.ts +5 -0
- package/build/graphql/queries/AssetQuery.js +27 -0
- package/build/graphql/queries/BranchQuery.d.ts +8 -0
- package/build/graphql/queries/BranchQuery.js +19 -8
- package/build/project/publish.d.ts +2 -4
- package/build/project/publish.js +2 -6
- package/build/update/queries.d.ts +1 -1
- package/build/update/republish.d.ts +1 -1
- package/build/update/roll-back-to-embedded.d.ts +1 -1
- package/build/update/utils.d.ts +6 -1
- package/build/update/utils.js +69 -1
- package/oclif.manifest.json +44 -2
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -120,10 +120,12 @@ eas --help COMMAND
|
|
|
120
120
|
* [`eas metadata:lint`](#eas-metadatalint)
|
|
121
121
|
* [`eas metadata:pull`](#eas-metadatapull)
|
|
122
122
|
* [`eas metadata:push`](#eas-metadatapush)
|
|
123
|
+
* [`eas new [PATH]`](#eas-new-path)
|
|
123
124
|
* [`eas onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-onboarding-target_project_directory)
|
|
124
125
|
* [`eas open`](#eas-open)
|
|
125
126
|
* [`eas project:info`](#eas-projectinfo)
|
|
126
127
|
* [`eas project:init`](#eas-projectinit)
|
|
128
|
+
* [`eas project:new [PATH]`](#eas-projectnew-path)
|
|
127
129
|
* [`eas project:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-projectonboarding-target_project_directory)
|
|
128
130
|
* [`eas submit`](#eas-submit)
|
|
129
131
|
* [`eas update`](#eas-update)
|
|
@@ -152,6 +154,7 @@ eas --help COMMAND
|
|
|
152
154
|
* [`eas workflow:logs [ID]`](#eas-workflowlogs-id)
|
|
153
155
|
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
154
156
|
* [`eas workflow:runs`](#eas-workflowruns)
|
|
157
|
+
* [`eas workflow:status [WORKFLOW_RUN_ID]`](#eas-workflowstatus-workflow_run_id)
|
|
155
158
|
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
156
159
|
* [`eas workflow:view [ID]`](#eas-workflowview-id)
|
|
157
160
|
|
|
@@ -173,7 +176,7 @@ ALIASES
|
|
|
173
176
|
$ eas login
|
|
174
177
|
```
|
|
175
178
|
|
|
176
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
179
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
177
180
|
|
|
178
181
|
## `eas account:logout`
|
|
179
182
|
|
|
@@ -190,7 +193,7 @@ ALIASES
|
|
|
190
193
|
$ eas logout
|
|
191
194
|
```
|
|
192
195
|
|
|
193
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
196
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
194
197
|
|
|
195
198
|
## `eas account:view`
|
|
196
199
|
|
|
@@ -207,7 +210,7 @@ ALIASES
|
|
|
207
210
|
$ eas whoami
|
|
208
211
|
```
|
|
209
212
|
|
|
210
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
213
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
211
214
|
|
|
212
215
|
## `eas analytics [STATUS]`
|
|
213
216
|
|
|
@@ -221,7 +224,7 @@ DESCRIPTION
|
|
|
221
224
|
display or change analytics settings
|
|
222
225
|
```
|
|
223
226
|
|
|
224
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
227
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
225
228
|
|
|
226
229
|
## `eas autocomplete [SHELL]`
|
|
227
230
|
|
|
@@ -273,7 +276,7 @@ DESCRIPTION
|
|
|
273
276
|
create a branch
|
|
274
277
|
```
|
|
275
278
|
|
|
276
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
279
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
277
280
|
|
|
278
281
|
## `eas branch:delete [NAME]`
|
|
279
282
|
|
|
@@ -294,7 +297,7 @@ DESCRIPTION
|
|
|
294
297
|
delete a branch
|
|
295
298
|
```
|
|
296
299
|
|
|
297
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
300
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
298
301
|
|
|
299
302
|
## `eas branch:list`
|
|
300
303
|
|
|
@@ -314,7 +317,7 @@ DESCRIPTION
|
|
|
314
317
|
list all branches
|
|
315
318
|
```
|
|
316
319
|
|
|
317
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
320
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
318
321
|
|
|
319
322
|
## `eas branch:rename`
|
|
320
323
|
|
|
@@ -334,7 +337,7 @@ DESCRIPTION
|
|
|
334
337
|
rename a branch
|
|
335
338
|
```
|
|
336
339
|
|
|
337
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
340
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
338
341
|
|
|
339
342
|
## `eas branch:view [NAME]`
|
|
340
343
|
|
|
@@ -357,7 +360,7 @@ DESCRIPTION
|
|
|
357
360
|
view a branch
|
|
358
361
|
```
|
|
359
362
|
|
|
360
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
363
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
361
364
|
|
|
362
365
|
## `eas build`
|
|
363
366
|
|
|
@@ -398,7 +401,7 @@ DESCRIPTION
|
|
|
398
401
|
start a build
|
|
399
402
|
```
|
|
400
403
|
|
|
401
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
404
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
402
405
|
|
|
403
406
|
## `eas build:cancel [BUILD_ID]`
|
|
404
407
|
|
|
@@ -417,7 +420,7 @@ DESCRIPTION
|
|
|
417
420
|
cancel a build
|
|
418
421
|
```
|
|
419
422
|
|
|
420
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
423
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
421
424
|
|
|
422
425
|
## `eas build:configure`
|
|
423
426
|
|
|
@@ -434,7 +437,7 @@ DESCRIPTION
|
|
|
434
437
|
configure the project to support EAS Build
|
|
435
438
|
```
|
|
436
439
|
|
|
437
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
440
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
438
441
|
|
|
439
442
|
## `eas build:delete [BUILD_ID]`
|
|
440
443
|
|
|
@@ -453,7 +456,7 @@ DESCRIPTION
|
|
|
453
456
|
delete a build
|
|
454
457
|
```
|
|
455
458
|
|
|
456
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
459
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
457
460
|
|
|
458
461
|
## `eas build:dev`
|
|
459
462
|
|
|
@@ -473,7 +476,7 @@ DESCRIPTION
|
|
|
473
476
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
474
477
|
```
|
|
475
478
|
|
|
476
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
479
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
477
480
|
|
|
478
481
|
## `eas build:download`
|
|
479
482
|
|
|
@@ -494,7 +497,7 @@ DESCRIPTION
|
|
|
494
497
|
download simulator/emulator builds for a given fingerprint hash
|
|
495
498
|
```
|
|
496
499
|
|
|
497
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
500
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
498
501
|
|
|
499
502
|
## `eas build:inspect`
|
|
500
503
|
|
|
@@ -529,7 +532,7 @@ DESCRIPTION
|
|
|
529
532
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
530
533
|
```
|
|
531
534
|
|
|
532
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
535
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
533
536
|
|
|
534
537
|
## `eas build:list`
|
|
535
538
|
|
|
@@ -581,7 +584,7 @@ DESCRIPTION
|
|
|
581
584
|
list all builds for your project
|
|
582
585
|
```
|
|
583
586
|
|
|
584
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
587
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
585
588
|
|
|
586
589
|
## `eas build:resign`
|
|
587
590
|
|
|
@@ -610,7 +613,7 @@ DESCRIPTION
|
|
|
610
613
|
re-sign a build archive
|
|
611
614
|
```
|
|
612
615
|
|
|
613
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
616
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
614
617
|
|
|
615
618
|
## `eas build:run`
|
|
616
619
|
|
|
@@ -636,7 +639,7 @@ DESCRIPTION
|
|
|
636
639
|
run simulator/emulator builds from eas-cli
|
|
637
640
|
```
|
|
638
641
|
|
|
639
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
642
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
640
643
|
|
|
641
644
|
## `eas build:submit`
|
|
642
645
|
|
|
@@ -690,7 +693,7 @@ DESCRIPTION
|
|
|
690
693
|
get the latest version from EAS servers
|
|
691
694
|
```
|
|
692
695
|
|
|
693
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
696
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
694
697
|
|
|
695
698
|
## `eas build:version:set`
|
|
696
699
|
|
|
@@ -709,7 +712,7 @@ DESCRIPTION
|
|
|
709
712
|
update version of an app
|
|
710
713
|
```
|
|
711
714
|
|
|
712
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
715
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
713
716
|
|
|
714
717
|
## `eas build:version:sync`
|
|
715
718
|
|
|
@@ -728,7 +731,7 @@ DESCRIPTION
|
|
|
728
731
|
update a version in native code with a value stored on EAS servers
|
|
729
732
|
```
|
|
730
733
|
|
|
731
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
734
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
732
735
|
|
|
733
736
|
## `eas build:view [BUILD_ID]`
|
|
734
737
|
|
|
@@ -745,7 +748,7 @@ DESCRIPTION
|
|
|
745
748
|
view a build for your project
|
|
746
749
|
```
|
|
747
750
|
|
|
748
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
751
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
749
752
|
|
|
750
753
|
## `eas channel:create [NAME]`
|
|
751
754
|
|
|
@@ -766,7 +769,7 @@ DESCRIPTION
|
|
|
766
769
|
create a channel
|
|
767
770
|
```
|
|
768
771
|
|
|
769
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
772
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
770
773
|
|
|
771
774
|
## `eas channel:delete [NAME]`
|
|
772
775
|
|
|
@@ -787,7 +790,7 @@ DESCRIPTION
|
|
|
787
790
|
Delete a channel
|
|
788
791
|
```
|
|
789
792
|
|
|
790
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
793
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
791
794
|
|
|
792
795
|
## `eas channel:edit [NAME]`
|
|
793
796
|
|
|
@@ -809,7 +812,7 @@ DESCRIPTION
|
|
|
809
812
|
point a channel at a new branch
|
|
810
813
|
```
|
|
811
814
|
|
|
812
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
815
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
813
816
|
|
|
814
817
|
## `eas channel:list`
|
|
815
818
|
|
|
@@ -829,7 +832,7 @@ DESCRIPTION
|
|
|
829
832
|
list all channels
|
|
830
833
|
```
|
|
831
834
|
|
|
832
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
835
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
833
836
|
|
|
834
837
|
## `eas channel:pause [NAME]`
|
|
835
838
|
|
|
@@ -851,7 +854,7 @@ DESCRIPTION
|
|
|
851
854
|
pause a channel to stop it from sending updates
|
|
852
855
|
```
|
|
853
856
|
|
|
854
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
857
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
855
858
|
|
|
856
859
|
## `eas channel:resume [NAME]`
|
|
857
860
|
|
|
@@ -873,7 +876,7 @@ DESCRIPTION
|
|
|
873
876
|
resume a channel to start sending updates
|
|
874
877
|
```
|
|
875
878
|
|
|
876
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
879
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
877
880
|
|
|
878
881
|
## `eas channel:rollout [CHANNEL]`
|
|
879
882
|
|
|
@@ -906,7 +909,7 @@ DESCRIPTION
|
|
|
906
909
|
Roll a new branch out on a channel incrementally.
|
|
907
910
|
```
|
|
908
911
|
|
|
909
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
912
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
910
913
|
|
|
911
914
|
## `eas channel:view [NAME]`
|
|
912
915
|
|
|
@@ -929,7 +932,7 @@ DESCRIPTION
|
|
|
929
932
|
view a channel
|
|
930
933
|
```
|
|
931
934
|
|
|
932
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
935
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
933
936
|
|
|
934
937
|
## `eas config`
|
|
935
938
|
|
|
@@ -950,7 +953,7 @@ DESCRIPTION
|
|
|
950
953
|
display project configuration (app.json + eas.json)
|
|
951
954
|
```
|
|
952
955
|
|
|
953
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
956
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/config.ts)_
|
|
954
957
|
|
|
955
958
|
## `eas credentials`
|
|
956
959
|
|
|
@@ -967,7 +970,7 @@ DESCRIPTION
|
|
|
967
970
|
manage credentials
|
|
968
971
|
```
|
|
969
972
|
|
|
970
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
973
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
971
974
|
|
|
972
975
|
## `eas credentials:configure-build`
|
|
973
976
|
|
|
@@ -985,7 +988,7 @@ DESCRIPTION
|
|
|
985
988
|
Set up credentials for building your project.
|
|
986
989
|
```
|
|
987
990
|
|
|
988
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
991
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
989
992
|
|
|
990
993
|
## `eas deploy [options]`
|
|
991
994
|
|
|
@@ -1013,7 +1016,7 @@ ALIASES
|
|
|
1013
1016
|
$ eas worker:deploy
|
|
1014
1017
|
```
|
|
1015
1018
|
|
|
1016
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1019
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1017
1020
|
|
|
1018
1021
|
## `eas deploy:alias`
|
|
1019
1022
|
|
|
@@ -1038,7 +1041,7 @@ ALIASES
|
|
|
1038
1041
|
$ eas deploy:promote
|
|
1039
1042
|
```
|
|
1040
1043
|
|
|
1041
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1044
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1042
1045
|
|
|
1043
1046
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1044
1047
|
|
|
@@ -1059,7 +1062,7 @@ ALIASES
|
|
|
1059
1062
|
$ eas worker:alias:delete
|
|
1060
1063
|
```
|
|
1061
1064
|
|
|
1062
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1065
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1063
1066
|
|
|
1064
1067
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1065
1068
|
|
|
@@ -1080,7 +1083,7 @@ ALIASES
|
|
|
1080
1083
|
$ eas worker:delete
|
|
1081
1084
|
```
|
|
1082
1085
|
|
|
1083
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1086
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1084
1087
|
|
|
1085
1088
|
## `eas deploy:promote`
|
|
1086
1089
|
|
|
@@ -1117,7 +1120,7 @@ DESCRIPTION
|
|
|
1117
1120
|
register new Apple Devices to use for internal distribution
|
|
1118
1121
|
```
|
|
1119
1122
|
|
|
1120
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1123
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1121
1124
|
|
|
1122
1125
|
## `eas device:delete`
|
|
1123
1126
|
|
|
@@ -1137,7 +1140,7 @@ DESCRIPTION
|
|
|
1137
1140
|
remove a registered device from your account
|
|
1138
1141
|
```
|
|
1139
1142
|
|
|
1140
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1143
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1141
1144
|
|
|
1142
1145
|
## `eas device:list`
|
|
1143
1146
|
|
|
@@ -1158,7 +1161,7 @@ DESCRIPTION
|
|
|
1158
1161
|
list all registered devices for your account
|
|
1159
1162
|
```
|
|
1160
1163
|
|
|
1161
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1164
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1162
1165
|
|
|
1163
1166
|
## `eas device:rename`
|
|
1164
1167
|
|
|
@@ -1179,7 +1182,7 @@ DESCRIPTION
|
|
|
1179
1182
|
rename a registered device
|
|
1180
1183
|
```
|
|
1181
1184
|
|
|
1182
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1185
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1183
1186
|
|
|
1184
1187
|
## `eas device:view [UDID]`
|
|
1185
1188
|
|
|
@@ -1193,7 +1196,7 @@ DESCRIPTION
|
|
|
1193
1196
|
view a device for your project
|
|
1194
1197
|
```
|
|
1195
1198
|
|
|
1196
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1199
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1197
1200
|
|
|
1198
1201
|
## `eas diagnostics`
|
|
1199
1202
|
|
|
@@ -1207,7 +1210,7 @@ DESCRIPTION
|
|
|
1207
1210
|
display environment info
|
|
1208
1211
|
```
|
|
1209
1212
|
|
|
1210
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1213
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1211
1214
|
|
|
1212
1215
|
## `eas env:create [ENVIRONMENT]`
|
|
1213
1216
|
|
|
@@ -1237,7 +1240,7 @@ DESCRIPTION
|
|
|
1237
1240
|
create an environment variable for the current project or account
|
|
1238
1241
|
```
|
|
1239
1242
|
|
|
1240
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1243
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1241
1244
|
|
|
1242
1245
|
## `eas env:delete [ENVIRONMENT]`
|
|
1243
1246
|
|
|
@@ -1262,7 +1265,7 @@ DESCRIPTION
|
|
|
1262
1265
|
delete an environment variable for the current project or account
|
|
1263
1266
|
```
|
|
1264
1267
|
|
|
1265
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1268
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1266
1269
|
|
|
1267
1270
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1268
1271
|
|
|
@@ -1284,7 +1287,7 @@ DESCRIPTION
|
|
|
1284
1287
|
execute a command with environment variables from the selected environment
|
|
1285
1288
|
```
|
|
1286
1289
|
|
|
1287
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1290
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1288
1291
|
|
|
1289
1292
|
## `eas env:get [ENVIRONMENT]`
|
|
1290
1293
|
|
|
@@ -1309,7 +1312,7 @@ DESCRIPTION
|
|
|
1309
1312
|
view an environment variable for the current project or account
|
|
1310
1313
|
```
|
|
1311
1314
|
|
|
1312
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1315
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1313
1316
|
|
|
1314
1317
|
## `eas env:list [ENVIRONMENT]`
|
|
1315
1318
|
|
|
@@ -1335,7 +1338,7 @@ DESCRIPTION
|
|
|
1335
1338
|
list environment variables for the current project or account
|
|
1336
1339
|
```
|
|
1337
1340
|
|
|
1338
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1341
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1339
1342
|
|
|
1340
1343
|
## `eas env:pull [ENVIRONMENT]`
|
|
1341
1344
|
|
|
@@ -1357,7 +1360,7 @@ DESCRIPTION
|
|
|
1357
1360
|
pull environment variables for the selected environment to .env file
|
|
1358
1361
|
```
|
|
1359
1362
|
|
|
1360
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1363
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1361
1364
|
|
|
1362
1365
|
## `eas env:push [ENVIRONMENT]`
|
|
1363
1366
|
|
|
@@ -1379,7 +1382,7 @@ DESCRIPTION
|
|
|
1379
1382
|
push environment variables from .env file to the selected environment
|
|
1380
1383
|
```
|
|
1381
1384
|
|
|
1382
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1385
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1383
1386
|
|
|
1384
1387
|
## `eas env:update [ENVIRONMENT]`
|
|
1385
1388
|
|
|
@@ -1411,7 +1414,7 @@ DESCRIPTION
|
|
|
1411
1414
|
update an environment variable on the current project or account
|
|
1412
1415
|
```
|
|
1413
1416
|
|
|
1414
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1417
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1415
1418
|
|
|
1416
1419
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1417
1420
|
|
|
@@ -1455,7 +1458,7 @@ EXAMPLES
|
|
|
1455
1458
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1456
1459
|
```
|
|
1457
1460
|
|
|
1458
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1461
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1459
1462
|
|
|
1460
1463
|
## `eas fingerprint:generate`
|
|
1461
1464
|
|
|
@@ -1485,7 +1488,7 @@ EXAMPLES
|
|
|
1485
1488
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1486
1489
|
```
|
|
1487
1490
|
|
|
1488
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1491
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1489
1492
|
|
|
1490
1493
|
## `eas help [COMMAND]`
|
|
1491
1494
|
|
|
@@ -1593,7 +1596,7 @@ DESCRIPTION
|
|
|
1593
1596
|
validate the local store configuration
|
|
1594
1597
|
```
|
|
1595
1598
|
|
|
1596
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1599
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1597
1600
|
|
|
1598
1601
|
## `eas metadata:pull`
|
|
1599
1602
|
|
|
@@ -1610,7 +1613,7 @@ DESCRIPTION
|
|
|
1610
1613
|
generate the local store configuration from the app stores
|
|
1611
1614
|
```
|
|
1612
1615
|
|
|
1613
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1616
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1614
1617
|
|
|
1615
1618
|
## `eas metadata:push`
|
|
1616
1619
|
|
|
@@ -1627,7 +1630,28 @@ DESCRIPTION
|
|
|
1627
1630
|
sync the local store configuration to the app stores
|
|
1628
1631
|
```
|
|
1629
1632
|
|
|
1630
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1633
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1634
|
+
|
|
1635
|
+
## `eas new [PATH]`
|
|
1636
|
+
|
|
1637
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1638
|
+
|
|
1639
|
+
```
|
|
1640
|
+
USAGE
|
|
1641
|
+
$ eas new [PATH] [-p bun|npm|pnpm|yarn]
|
|
1642
|
+
|
|
1643
|
+
ARGUMENTS
|
|
1644
|
+
PATH Path to create the project (defaults to current directory)
|
|
1645
|
+
|
|
1646
|
+
FLAGS
|
|
1647
|
+
-p, --package-manager=(bun|npm|pnpm|yarn) [default: npm] Package manager to use for installing dependencies
|
|
1648
|
+
|
|
1649
|
+
DESCRIPTION
|
|
1650
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1651
|
+
|
|
1652
|
+
ALIASES
|
|
1653
|
+
$ eas new
|
|
1654
|
+
```
|
|
1631
1655
|
|
|
1632
1656
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1633
1657
|
|
|
@@ -1657,7 +1681,7 @@ DESCRIPTION
|
|
|
1657
1681
|
open the project page in a web browser
|
|
1658
1682
|
```
|
|
1659
1683
|
|
|
1660
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1684
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/open.ts)_
|
|
1661
1685
|
|
|
1662
1686
|
## `eas project:info`
|
|
1663
1687
|
|
|
@@ -1671,7 +1695,7 @@ DESCRIPTION
|
|
|
1671
1695
|
information about the current project
|
|
1672
1696
|
```
|
|
1673
1697
|
|
|
1674
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1698
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1675
1699
|
|
|
1676
1700
|
## `eas project:init`
|
|
1677
1701
|
|
|
@@ -1694,7 +1718,30 @@ ALIASES
|
|
|
1694
1718
|
$ eas init
|
|
1695
1719
|
```
|
|
1696
1720
|
|
|
1697
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1721
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1722
|
+
|
|
1723
|
+
## `eas project:new [PATH]`
|
|
1724
|
+
|
|
1725
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1726
|
+
|
|
1727
|
+
```
|
|
1728
|
+
USAGE
|
|
1729
|
+
$ eas project:new [PATH] [-p bun|npm|pnpm|yarn]
|
|
1730
|
+
|
|
1731
|
+
ARGUMENTS
|
|
1732
|
+
PATH Path to create the project (defaults to current directory)
|
|
1733
|
+
|
|
1734
|
+
FLAGS
|
|
1735
|
+
-p, --package-manager=(bun|npm|pnpm|yarn) [default: npm] Package manager to use for installing dependencies
|
|
1736
|
+
|
|
1737
|
+
DESCRIPTION
|
|
1738
|
+
Create a new project configured with Expo Application Services (EAS)
|
|
1739
|
+
|
|
1740
|
+
ALIASES
|
|
1741
|
+
$ eas new
|
|
1742
|
+
```
|
|
1743
|
+
|
|
1744
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/project/new.ts)_
|
|
1698
1745
|
|
|
1699
1746
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1700
1747
|
|
|
@@ -1712,7 +1759,7 @@ ALIASES
|
|
|
1712
1759
|
$ eas onboarding
|
|
1713
1760
|
```
|
|
1714
1761
|
|
|
1715
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1762
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1716
1763
|
|
|
1717
1764
|
## `eas submit`
|
|
1718
1765
|
|
|
@@ -1747,7 +1794,7 @@ ALIASES
|
|
|
1747
1794
|
$ eas build:submit
|
|
1748
1795
|
```
|
|
1749
1796
|
|
|
1750
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1797
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1751
1798
|
|
|
1752
1799
|
## `eas update`
|
|
1753
1800
|
|
|
@@ -1787,7 +1834,7 @@ DESCRIPTION
|
|
|
1787
1834
|
publish an update group
|
|
1788
1835
|
```
|
|
1789
1836
|
|
|
1790
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1837
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1791
1838
|
|
|
1792
1839
|
## `eas update:configure`
|
|
1793
1840
|
|
|
@@ -1807,7 +1854,7 @@ DESCRIPTION
|
|
|
1807
1854
|
configure the project to support EAS Update
|
|
1808
1855
|
```
|
|
1809
1856
|
|
|
1810
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1857
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1811
1858
|
|
|
1812
1859
|
## `eas update:delete GROUPID`
|
|
1813
1860
|
|
|
@@ -1828,7 +1875,7 @@ DESCRIPTION
|
|
|
1828
1875
|
delete all the updates in an update group
|
|
1829
1876
|
```
|
|
1830
1877
|
|
|
1831
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1878
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1832
1879
|
|
|
1833
1880
|
## `eas update:edit [GROUPID]`
|
|
1834
1881
|
|
|
@@ -1852,7 +1899,7 @@ DESCRIPTION
|
|
|
1852
1899
|
edit all the updates in an update group
|
|
1853
1900
|
```
|
|
1854
1901
|
|
|
1855
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1902
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1856
1903
|
|
|
1857
1904
|
## `eas update:list`
|
|
1858
1905
|
|
|
@@ -1874,7 +1921,7 @@ DESCRIPTION
|
|
|
1874
1921
|
view the recent updates
|
|
1875
1922
|
```
|
|
1876
1923
|
|
|
1877
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1924
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1878
1925
|
|
|
1879
1926
|
## `eas update:republish`
|
|
1880
1927
|
|
|
@@ -1910,7 +1957,7 @@ DESCRIPTION
|
|
|
1910
1957
|
roll back to an existing update
|
|
1911
1958
|
```
|
|
1912
1959
|
|
|
1913
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1960
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1914
1961
|
|
|
1915
1962
|
## `eas update:revert-update-rollout`
|
|
1916
1963
|
|
|
@@ -1937,7 +1984,7 @@ DESCRIPTION
|
|
|
1937
1984
|
revert a rollout update for a project
|
|
1938
1985
|
```
|
|
1939
1986
|
|
|
1940
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1987
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1941
1988
|
|
|
1942
1989
|
## `eas update:roll-back-to-embedded`
|
|
1943
1990
|
|
|
@@ -1965,7 +2012,7 @@ DESCRIPTION
|
|
|
1965
2012
|
roll back to the embedded update
|
|
1966
2013
|
```
|
|
1967
2014
|
|
|
1968
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2015
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1969
2016
|
|
|
1970
2017
|
## `eas update:rollback`
|
|
1971
2018
|
|
|
@@ -1986,7 +2033,7 @@ DESCRIPTION
|
|
|
1986
2033
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
1987
2034
|
```
|
|
1988
2035
|
|
|
1989
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2036
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1990
2037
|
|
|
1991
2038
|
## `eas update:view GROUPID`
|
|
1992
2039
|
|
|
@@ -2006,7 +2053,7 @@ DESCRIPTION
|
|
|
2006
2053
|
update group details
|
|
2007
2054
|
```
|
|
2008
2055
|
|
|
2009
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2056
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
2010
2057
|
|
|
2011
2058
|
## `eas upload`
|
|
2012
2059
|
|
|
@@ -2027,7 +2074,7 @@ DESCRIPTION
|
|
|
2027
2074
|
upload a local build and generate a sharable link
|
|
2028
2075
|
```
|
|
2029
2076
|
|
|
2030
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2077
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/upload.ts)_
|
|
2031
2078
|
|
|
2032
2079
|
## `eas webhook:create`
|
|
2033
2080
|
|
|
@@ -2048,7 +2095,7 @@ DESCRIPTION
|
|
|
2048
2095
|
create a webhook
|
|
2049
2096
|
```
|
|
2050
2097
|
|
|
2051
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2098
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2052
2099
|
|
|
2053
2100
|
## `eas webhook:delete [ID]`
|
|
2054
2101
|
|
|
@@ -2068,7 +2115,7 @@ DESCRIPTION
|
|
|
2068
2115
|
delete a webhook
|
|
2069
2116
|
```
|
|
2070
2117
|
|
|
2071
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2118
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2072
2119
|
|
|
2073
2120
|
## `eas webhook:list`
|
|
2074
2121
|
|
|
@@ -2086,7 +2133,7 @@ DESCRIPTION
|
|
|
2086
2133
|
list webhooks
|
|
2087
2134
|
```
|
|
2088
2135
|
|
|
2089
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2136
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2090
2137
|
|
|
2091
2138
|
## `eas webhook:update`
|
|
2092
2139
|
|
|
@@ -2108,7 +2155,7 @@ DESCRIPTION
|
|
|
2108
2155
|
update a webhook
|
|
2109
2156
|
```
|
|
2110
2157
|
|
|
2111
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2158
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2112
2159
|
|
|
2113
2160
|
## `eas webhook:view ID`
|
|
2114
2161
|
|
|
@@ -2125,7 +2172,7 @@ DESCRIPTION
|
|
|
2125
2172
|
view a webhook
|
|
2126
2173
|
```
|
|
2127
2174
|
|
|
2128
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2175
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2129
2176
|
|
|
2130
2177
|
## `eas whoami`
|
|
2131
2178
|
|
|
@@ -2245,7 +2292,7 @@ DESCRIPTION
|
|
|
2245
2292
|
to cancel.
|
|
2246
2293
|
```
|
|
2247
2294
|
|
|
2248
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2295
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2249
2296
|
|
|
2250
2297
|
## `eas workflow:create [NAME]`
|
|
2251
2298
|
|
|
@@ -2265,7 +2312,7 @@ DESCRIPTION
|
|
|
2265
2312
|
create a new workflow configuration YAML file
|
|
2266
2313
|
```
|
|
2267
2314
|
|
|
2268
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2315
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2269
2316
|
|
|
2270
2317
|
## `eas workflow:logs [ID]`
|
|
2271
2318
|
|
|
@@ -2289,7 +2336,7 @@ DESCRIPTION
|
|
|
2289
2336
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2290
2337
|
```
|
|
2291
2338
|
|
|
2292
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2339
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2293
2340
|
|
|
2294
2341
|
## `eas workflow:run [FILE]`
|
|
2295
2342
|
|
|
@@ -2329,7 +2376,7 @@ FLAG DESCRIPTIONS
|
|
|
2329
2376
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2330
2377
|
```
|
|
2331
2378
|
|
|
2332
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2379
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2333
2380
|
|
|
2334
2381
|
## `eas workflow:runs`
|
|
2335
2382
|
|
|
@@ -2354,7 +2401,35 @@ DESCRIPTION
|
|
|
2354
2401
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2355
2402
|
```
|
|
2356
2403
|
|
|
2357
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2404
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2405
|
+
|
|
2406
|
+
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2407
|
+
|
|
2408
|
+
show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.
|
|
2409
|
+
|
|
2410
|
+
```
|
|
2411
|
+
USAGE
|
|
2412
|
+
$ eas workflow:status [WORKFLOW_RUN_ID] [--non-interactive] [--wait] [--json]
|
|
2413
|
+
|
|
2414
|
+
ARGUMENTS
|
|
2415
|
+
WORKFLOW_RUN_ID A workflow run ID.
|
|
2416
|
+
|
|
2417
|
+
FLAGS
|
|
2418
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2419
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2420
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2421
|
+
|
|
2422
|
+
DESCRIPTION
|
|
2423
|
+
show the status of an existing workflow run. If no run ID is provided, you will be prompted to select from recent
|
|
2424
|
+
workflow runs for the current project.
|
|
2425
|
+
|
|
2426
|
+
FLAG DESCRIPTIONS
|
|
2427
|
+
--[no-]wait Wait for workflow run to complete. Defaults to false.
|
|
2428
|
+
|
|
2429
|
+
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2430
|
+
```
|
|
2431
|
+
|
|
2432
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2358
2433
|
|
|
2359
2434
|
## `eas workflow:validate PATH`
|
|
2360
2435
|
|
|
@@ -2374,7 +2449,7 @@ DESCRIPTION
|
|
|
2374
2449
|
validate a workflow configuration yaml file
|
|
2375
2450
|
```
|
|
2376
2451
|
|
|
2377
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2452
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2378
2453
|
|
|
2379
2454
|
## `eas workflow:view [ID]`
|
|
2380
2455
|
|
|
@@ -2396,5 +2471,5 @@ DESCRIPTION
|
|
|
2396
2471
|
workflow runs for the current project.
|
|
2397
2472
|
```
|
|
2398
2473
|
|
|
2399
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2474
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.27.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2400
2475
|
<!-- commandsstop -->
|