eas-cli 16.7.2 → 16.9.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 +128 -78
- package/build/build/runBuildAndSubmit.js +7 -6
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.d.ts +3 -1
- package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +7 -3
- package/build/commands/build/configure.js +2 -2
- package/build/commands/submit/internal.js +1 -0
- package/build/commands/submit.d.ts +1 -0
- package/build/commands/submit.js +8 -1
- package/build/commands/update/configure.js +2 -2
- package/build/commands/update/index.js +4 -4
- package/build/commands/update/roll-back-to-embedded.js +2 -2
- package/build/commands/workflow/list.d.ts +12 -0
- package/build/commands/workflow/list.js +52 -0
- package/build/commands/workflow/run.js +0 -1
- package/build/commands/workflow/runs.d.ts +16 -0
- package/build/commands/workflow/runs.js +87 -0
- package/build/graphql/generated.d.ts +135 -4
- package/build/graphql/generated.js +2 -1
- package/build/graphql/queries/AppQuery.d.ts +3 -1
- package/build/graphql/queries/AppQuery.js +57 -0
- package/build/graphql/queries/WorkflowRunQuery.d.ts +2 -1
- package/build/graphql/queries/WorkflowRunQuery.js +38 -0
- package/build/graphql/types/Workflow.d.ts +1 -0
- package/build/graphql/types/Workflow.js +14 -0
- package/build/graphql/types/WorkflowRun.d.ts +1 -0
- package/build/graphql/types/WorkflowRun.js +20 -0
- package/build/submit/context.d.ts +2 -0
- package/build/submit/context.js +12 -1
- package/build/submit/ios/IosSubmitter.js +2 -1
- package/oclif.manifest.json +81 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -141,7 +141,9 @@ eas --help COMMAND
|
|
|
141
141
|
* [`eas worker:alias`](#eas-workeralias)
|
|
142
142
|
* [`eas deploy [2m[options][22m`](#eas-deploy-2moptions22m-1)
|
|
143
143
|
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
144
|
+
* [`eas workflow:list`](#eas-workflowlist)
|
|
144
145
|
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
146
|
+
* [`eas workflow:runs`](#eas-workflowruns)
|
|
145
147
|
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
146
148
|
|
|
147
149
|
## `eas account:login`
|
|
@@ -162,7 +164,7 @@ ALIASES
|
|
|
162
164
|
$ eas login
|
|
163
165
|
```
|
|
164
166
|
|
|
165
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
167
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
166
168
|
|
|
167
169
|
## `eas account:logout`
|
|
168
170
|
|
|
@@ -179,7 +181,7 @@ ALIASES
|
|
|
179
181
|
$ eas logout
|
|
180
182
|
```
|
|
181
183
|
|
|
182
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
184
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
183
185
|
|
|
184
186
|
## `eas account:view`
|
|
185
187
|
|
|
@@ -196,7 +198,7 @@ ALIASES
|
|
|
196
198
|
$ eas whoami
|
|
197
199
|
```
|
|
198
200
|
|
|
199
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
201
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
200
202
|
|
|
201
203
|
## `eas analytics [STATUS]`
|
|
202
204
|
|
|
@@ -210,7 +212,7 @@ DESCRIPTION
|
|
|
210
212
|
display or change analytics settings
|
|
211
213
|
```
|
|
212
214
|
|
|
213
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
215
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
214
216
|
|
|
215
217
|
## `eas autocomplete [SHELL]`
|
|
216
218
|
|
|
@@ -262,7 +264,7 @@ DESCRIPTION
|
|
|
262
264
|
create a branch
|
|
263
265
|
```
|
|
264
266
|
|
|
265
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
267
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
266
268
|
|
|
267
269
|
## `eas branch:delete [NAME]`
|
|
268
270
|
|
|
@@ -283,7 +285,7 @@ DESCRIPTION
|
|
|
283
285
|
delete a branch
|
|
284
286
|
```
|
|
285
287
|
|
|
286
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
288
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
287
289
|
|
|
288
290
|
## `eas branch:list`
|
|
289
291
|
|
|
@@ -303,7 +305,7 @@ DESCRIPTION
|
|
|
303
305
|
list all branches
|
|
304
306
|
```
|
|
305
307
|
|
|
306
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
308
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
307
309
|
|
|
308
310
|
## `eas branch:rename`
|
|
309
311
|
|
|
@@ -323,7 +325,7 @@ DESCRIPTION
|
|
|
323
325
|
rename a branch
|
|
324
326
|
```
|
|
325
327
|
|
|
326
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
328
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
327
329
|
|
|
328
330
|
## `eas branch:view [NAME]`
|
|
329
331
|
|
|
@@ -346,7 +348,7 @@ DESCRIPTION
|
|
|
346
348
|
view a branch
|
|
347
349
|
```
|
|
348
350
|
|
|
349
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
351
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
350
352
|
|
|
351
353
|
## `eas build`
|
|
352
354
|
|
|
@@ -384,7 +386,7 @@ DESCRIPTION
|
|
|
384
386
|
start a build
|
|
385
387
|
```
|
|
386
388
|
|
|
387
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
389
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
388
390
|
|
|
389
391
|
## `eas build:cancel [BUILD_ID]`
|
|
390
392
|
|
|
@@ -403,7 +405,7 @@ DESCRIPTION
|
|
|
403
405
|
cancel a build
|
|
404
406
|
```
|
|
405
407
|
|
|
406
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
408
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
407
409
|
|
|
408
410
|
## `eas build:configure`
|
|
409
411
|
|
|
@@ -420,7 +422,7 @@ DESCRIPTION
|
|
|
420
422
|
configure the project to support EAS Build
|
|
421
423
|
```
|
|
422
424
|
|
|
423
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
425
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
424
426
|
|
|
425
427
|
## `eas build:delete [BUILD_ID]`
|
|
426
428
|
|
|
@@ -439,7 +441,7 @@ DESCRIPTION
|
|
|
439
441
|
delete a build
|
|
440
442
|
```
|
|
441
443
|
|
|
442
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
444
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
443
445
|
|
|
444
446
|
## `eas build:dev`
|
|
445
447
|
|
|
@@ -459,7 +461,7 @@ DESCRIPTION
|
|
|
459
461
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
460
462
|
```
|
|
461
463
|
|
|
462
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
464
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
463
465
|
|
|
464
466
|
## `eas build:download`
|
|
465
467
|
|
|
@@ -480,7 +482,7 @@ DESCRIPTION
|
|
|
480
482
|
download simulator/emulator builds for a given fingerprint hash
|
|
481
483
|
```
|
|
482
484
|
|
|
483
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
485
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
484
486
|
|
|
485
487
|
## `eas build:inspect`
|
|
486
488
|
|
|
@@ -515,7 +517,7 @@ DESCRIPTION
|
|
|
515
517
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
516
518
|
```
|
|
517
519
|
|
|
518
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
520
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
519
521
|
|
|
520
522
|
## `eas build:list`
|
|
521
523
|
|
|
@@ -567,7 +569,7 @@ DESCRIPTION
|
|
|
567
569
|
list all builds for your project
|
|
568
570
|
```
|
|
569
571
|
|
|
570
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
572
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
571
573
|
|
|
572
574
|
## `eas build:resign`
|
|
573
575
|
|
|
@@ -596,7 +598,7 @@ DESCRIPTION
|
|
|
596
598
|
re-sign a build archive
|
|
597
599
|
```
|
|
598
600
|
|
|
599
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
601
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
600
602
|
|
|
601
603
|
## `eas build:run`
|
|
602
604
|
|
|
@@ -622,7 +624,7 @@ DESCRIPTION
|
|
|
622
624
|
run simulator/emulator builds from eas-cli
|
|
623
625
|
```
|
|
624
626
|
|
|
625
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
627
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
626
628
|
|
|
627
629
|
## `eas build:submit`
|
|
628
630
|
|
|
@@ -631,11 +633,14 @@ submit app binary to App Store and/or Play Store
|
|
|
631
633
|
```
|
|
632
634
|
USAGE
|
|
633
635
|
$ eas build:submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
634
|
-
[--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
|
|
636
|
+
[--verbose] [--wait] [--verbose-fastlane] [-g <value>] [--non-interactive]
|
|
635
637
|
|
|
636
638
|
FLAGS
|
|
637
639
|
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
638
640
|
eas.json.
|
|
641
|
+
-g, --groups=<value>... Internal TestFlight testing groups to add the build to (iOS only). Learn more:
|
|
642
|
+
https://developer.apple.com/help/app-store-connect/test-a-beta-version/add-internal-
|
|
643
|
+
testers
|
|
639
644
|
-p, --platform=(android|ios|all)
|
|
640
645
|
--id=<value> ID of the build to submit
|
|
641
646
|
--latest Submit the latest build for specified platform
|
|
@@ -672,7 +677,7 @@ DESCRIPTION
|
|
|
672
677
|
get the latest version from EAS servers
|
|
673
678
|
```
|
|
674
679
|
|
|
675
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
680
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
676
681
|
|
|
677
682
|
## `eas build:version:set`
|
|
678
683
|
|
|
@@ -691,7 +696,7 @@ DESCRIPTION
|
|
|
691
696
|
update version of an app
|
|
692
697
|
```
|
|
693
698
|
|
|
694
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
699
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
695
700
|
|
|
696
701
|
## `eas build:version:sync`
|
|
697
702
|
|
|
@@ -710,7 +715,7 @@ DESCRIPTION
|
|
|
710
715
|
update a version in native code with a value stored on EAS servers
|
|
711
716
|
```
|
|
712
717
|
|
|
713
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
718
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
714
719
|
|
|
715
720
|
## `eas build:view [BUILD_ID]`
|
|
716
721
|
|
|
@@ -727,7 +732,7 @@ DESCRIPTION
|
|
|
727
732
|
view a build for your project
|
|
728
733
|
```
|
|
729
734
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
735
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
731
736
|
|
|
732
737
|
## `eas channel:create [NAME]`
|
|
733
738
|
|
|
@@ -748,7 +753,7 @@ DESCRIPTION
|
|
|
748
753
|
create a channel
|
|
749
754
|
```
|
|
750
755
|
|
|
751
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
756
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
752
757
|
|
|
753
758
|
## `eas channel:edit [NAME]`
|
|
754
759
|
|
|
@@ -770,7 +775,7 @@ DESCRIPTION
|
|
|
770
775
|
point a channel at a new branch
|
|
771
776
|
```
|
|
772
777
|
|
|
773
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
778
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
774
779
|
|
|
775
780
|
## `eas channel:list`
|
|
776
781
|
|
|
@@ -790,7 +795,7 @@ DESCRIPTION
|
|
|
790
795
|
list all channels
|
|
791
796
|
```
|
|
792
797
|
|
|
793
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
798
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
794
799
|
|
|
795
800
|
## `eas channel:pause [NAME]`
|
|
796
801
|
|
|
@@ -812,7 +817,7 @@ DESCRIPTION
|
|
|
812
817
|
pause a channel to stop it from sending updates
|
|
813
818
|
```
|
|
814
819
|
|
|
815
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
820
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
816
821
|
|
|
817
822
|
## `eas channel:resume [NAME]`
|
|
818
823
|
|
|
@@ -834,7 +839,7 @@ DESCRIPTION
|
|
|
834
839
|
resume a channel to start sending updates
|
|
835
840
|
```
|
|
836
841
|
|
|
837
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
842
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
838
843
|
|
|
839
844
|
## `eas channel:rollout [CHANNEL]`
|
|
840
845
|
|
|
@@ -867,7 +872,7 @@ DESCRIPTION
|
|
|
867
872
|
Roll a new branch out on a channel incrementally.
|
|
868
873
|
```
|
|
869
874
|
|
|
870
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
875
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
871
876
|
|
|
872
877
|
## `eas channel:view [NAME]`
|
|
873
878
|
|
|
@@ -890,7 +895,7 @@ DESCRIPTION
|
|
|
890
895
|
view a channel
|
|
891
896
|
```
|
|
892
897
|
|
|
893
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
898
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
894
899
|
|
|
895
900
|
## `eas config`
|
|
896
901
|
|
|
@@ -911,7 +916,7 @@ DESCRIPTION
|
|
|
911
916
|
display project configuration (app.json + eas.json)
|
|
912
917
|
```
|
|
913
918
|
|
|
914
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
919
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/config.ts)_
|
|
915
920
|
|
|
916
921
|
## `eas credentials`
|
|
917
922
|
|
|
@@ -928,7 +933,7 @@ DESCRIPTION
|
|
|
928
933
|
manage credentials
|
|
929
934
|
```
|
|
930
935
|
|
|
931
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
936
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
932
937
|
|
|
933
938
|
## `eas credentials:configure-build`
|
|
934
939
|
|
|
@@ -946,7 +951,7 @@ DESCRIPTION
|
|
|
946
951
|
Set up credentials for building your project.
|
|
947
952
|
```
|
|
948
953
|
|
|
949
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
954
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
950
955
|
|
|
951
956
|
## `eas deploy [2m[options][22m`
|
|
952
957
|
|
|
@@ -974,7 +979,7 @@ ALIASES
|
|
|
974
979
|
$ eas worker:deploy
|
|
975
980
|
```
|
|
976
981
|
|
|
977
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
982
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
978
983
|
|
|
979
984
|
## `eas deploy:alias`
|
|
980
985
|
|
|
@@ -999,7 +1004,7 @@ ALIASES
|
|
|
999
1004
|
$ eas deploy:promote
|
|
1000
1005
|
```
|
|
1001
1006
|
|
|
1002
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1007
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
1003
1008
|
|
|
1004
1009
|
## `eas deploy:promote`
|
|
1005
1010
|
|
|
@@ -1036,7 +1041,7 @@ DESCRIPTION
|
|
|
1036
1041
|
register new Apple Devices to use for internal distribution
|
|
1037
1042
|
```
|
|
1038
1043
|
|
|
1039
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1044
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1040
1045
|
|
|
1041
1046
|
## `eas device:delete`
|
|
1042
1047
|
|
|
@@ -1056,7 +1061,7 @@ DESCRIPTION
|
|
|
1056
1061
|
remove a registered device from your account
|
|
1057
1062
|
```
|
|
1058
1063
|
|
|
1059
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1064
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1060
1065
|
|
|
1061
1066
|
## `eas device:list`
|
|
1062
1067
|
|
|
@@ -1077,7 +1082,7 @@ DESCRIPTION
|
|
|
1077
1082
|
list all registered devices for your account
|
|
1078
1083
|
```
|
|
1079
1084
|
|
|
1080
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1085
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1081
1086
|
|
|
1082
1087
|
## `eas device:rename`
|
|
1083
1088
|
|
|
@@ -1098,7 +1103,7 @@ DESCRIPTION
|
|
|
1098
1103
|
rename a registered device
|
|
1099
1104
|
```
|
|
1100
1105
|
|
|
1101
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1106
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1102
1107
|
|
|
1103
1108
|
## `eas device:view [UDID]`
|
|
1104
1109
|
|
|
@@ -1112,7 +1117,7 @@ DESCRIPTION
|
|
|
1112
1117
|
view a device for your project
|
|
1113
1118
|
```
|
|
1114
1119
|
|
|
1115
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1120
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1116
1121
|
|
|
1117
1122
|
## `eas diagnostics`
|
|
1118
1123
|
|
|
@@ -1126,7 +1131,7 @@ DESCRIPTION
|
|
|
1126
1131
|
display environment info
|
|
1127
1132
|
```
|
|
1128
1133
|
|
|
1129
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1134
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1130
1135
|
|
|
1131
1136
|
## `eas env:create [ENVIRONMENT]`
|
|
1132
1137
|
|
|
@@ -1155,7 +1160,7 @@ DESCRIPTION
|
|
|
1155
1160
|
create an environment variable for the current project or account
|
|
1156
1161
|
```
|
|
1157
1162
|
|
|
1158
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1163
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1159
1164
|
|
|
1160
1165
|
## `eas env:delete [ENVIRONMENT]`
|
|
1161
1166
|
|
|
@@ -1179,7 +1184,7 @@ DESCRIPTION
|
|
|
1179
1184
|
delete an environment variable for the current project or account
|
|
1180
1185
|
```
|
|
1181
1186
|
|
|
1182
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1187
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1183
1188
|
|
|
1184
1189
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1185
1190
|
|
|
@@ -1200,7 +1205,7 @@ DESCRIPTION
|
|
|
1200
1205
|
execute a command with environment variables from the selected environment
|
|
1201
1206
|
```
|
|
1202
1207
|
|
|
1203
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1208
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1204
1209
|
|
|
1205
1210
|
## `eas env:get [ENVIRONMENT]`
|
|
1206
1211
|
|
|
@@ -1225,7 +1230,7 @@ DESCRIPTION
|
|
|
1225
1230
|
view an environment variable for the current project or account
|
|
1226
1231
|
```
|
|
1227
1232
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1233
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1229
1234
|
|
|
1230
1235
|
## `eas env:list [ENVIRONMENT]`
|
|
1231
1236
|
|
|
@@ -1250,7 +1255,7 @@ DESCRIPTION
|
|
|
1250
1255
|
list environment variables for the current project or account
|
|
1251
1256
|
```
|
|
1252
1257
|
|
|
1253
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1258
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1254
1259
|
|
|
1255
1260
|
## `eas env:pull [ENVIRONMENT]`
|
|
1256
1261
|
|
|
@@ -1273,7 +1278,7 @@ DESCRIPTION
|
|
|
1273
1278
|
pull environment variables for the selected environment to .env file
|
|
1274
1279
|
```
|
|
1275
1280
|
|
|
1276
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1281
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1277
1282
|
|
|
1278
1283
|
## `eas env:push [ENVIRONMENT]`
|
|
1279
1284
|
|
|
@@ -1294,7 +1299,7 @@ DESCRIPTION
|
|
|
1294
1299
|
push environment variables from .env file to the selected environment
|
|
1295
1300
|
```
|
|
1296
1301
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1302
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1298
1303
|
|
|
1299
1304
|
## `eas env:update [ENVIRONMENT]`
|
|
1300
1305
|
|
|
@@ -1325,7 +1330,7 @@ DESCRIPTION
|
|
|
1325
1330
|
update an environment variable on the current project or account
|
|
1326
1331
|
```
|
|
1327
1332
|
|
|
1328
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1333
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1329
1334
|
|
|
1330
1335
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1331
1336
|
|
|
@@ -1370,7 +1375,7 @@ EXAMPLES
|
|
|
1370
1375
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1371
1376
|
```
|
|
1372
1377
|
|
|
1373
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1378
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1374
1379
|
|
|
1375
1380
|
## `eas fingerprint:generate`
|
|
1376
1381
|
|
|
@@ -1401,7 +1406,7 @@ EXAMPLES
|
|
|
1401
1406
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1402
1407
|
```
|
|
1403
1408
|
|
|
1404
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1409
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1405
1410
|
|
|
1406
1411
|
## `eas help [COMMAND]`
|
|
1407
1412
|
|
|
@@ -1509,7 +1514,7 @@ DESCRIPTION
|
|
|
1509
1514
|
validate the local store configuration
|
|
1510
1515
|
```
|
|
1511
1516
|
|
|
1512
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1517
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1513
1518
|
|
|
1514
1519
|
## `eas metadata:pull`
|
|
1515
1520
|
|
|
@@ -1526,7 +1531,7 @@ DESCRIPTION
|
|
|
1526
1531
|
generate the local store configuration from the app stores
|
|
1527
1532
|
```
|
|
1528
1533
|
|
|
1529
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1534
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1530
1535
|
|
|
1531
1536
|
## `eas metadata:push`
|
|
1532
1537
|
|
|
@@ -1543,7 +1548,7 @@ DESCRIPTION
|
|
|
1543
1548
|
sync the local store configuration to the app stores
|
|
1544
1549
|
```
|
|
1545
1550
|
|
|
1546
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1551
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1547
1552
|
|
|
1548
1553
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1549
1554
|
|
|
@@ -1573,7 +1578,7 @@ DESCRIPTION
|
|
|
1573
1578
|
open the project page in a web browser
|
|
1574
1579
|
```
|
|
1575
1580
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1581
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/open.ts)_
|
|
1577
1582
|
|
|
1578
1583
|
## `eas project:info`
|
|
1579
1584
|
|
|
@@ -1587,7 +1592,7 @@ DESCRIPTION
|
|
|
1587
1592
|
information about the current project
|
|
1588
1593
|
```
|
|
1589
1594
|
|
|
1590
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1595
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1591
1596
|
|
|
1592
1597
|
## `eas project:init`
|
|
1593
1598
|
|
|
@@ -1610,7 +1615,7 @@ ALIASES
|
|
|
1610
1615
|
$ eas init
|
|
1611
1616
|
```
|
|
1612
1617
|
|
|
1613
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1618
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1614
1619
|
|
|
1615
1620
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1616
1621
|
|
|
@@ -1628,7 +1633,7 @@ ALIASES
|
|
|
1628
1633
|
$ eas onboarding
|
|
1629
1634
|
```
|
|
1630
1635
|
|
|
1631
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1636
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1632
1637
|
|
|
1633
1638
|
## `eas submit`
|
|
1634
1639
|
|
|
@@ -1637,11 +1642,14 @@ submit app binary to App Store and/or Play Store
|
|
|
1637
1642
|
```
|
|
1638
1643
|
USAGE
|
|
1639
1644
|
$ eas submit [-p android|ios|all] [-e <value>] [--latest | --id <value> | --path <value> | --url <value>]
|
|
1640
|
-
[--verbose] [--wait] [--verbose-fastlane] [--non-interactive]
|
|
1645
|
+
[--verbose] [--wait] [--verbose-fastlane] [-g <value>] [--non-interactive]
|
|
1641
1646
|
|
|
1642
1647
|
FLAGS
|
|
1643
1648
|
-e, --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
1644
1649
|
eas.json.
|
|
1650
|
+
-g, --groups=<value>... Internal TestFlight testing groups to add the build to (iOS only). Learn more:
|
|
1651
|
+
https://developer.apple.com/help/app-store-connect/test-a-beta-version/add-internal-
|
|
1652
|
+
testers
|
|
1645
1653
|
-p, --platform=(android|ios|all)
|
|
1646
1654
|
--id=<value> ID of the build to submit
|
|
1647
1655
|
--latest Submit the latest build for specified platform
|
|
@@ -1659,7 +1667,7 @@ ALIASES
|
|
|
1659
1667
|
$ eas build:submit
|
|
1660
1668
|
```
|
|
1661
1669
|
|
|
1662
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1670
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1663
1671
|
|
|
1664
1672
|
## `eas update`
|
|
1665
1673
|
|
|
@@ -1701,7 +1709,7 @@ DESCRIPTION
|
|
|
1701
1709
|
publish an update group
|
|
1702
1710
|
```
|
|
1703
1711
|
|
|
1704
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1712
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1705
1713
|
|
|
1706
1714
|
## `eas update:configure`
|
|
1707
1715
|
|
|
@@ -1721,7 +1729,7 @@ DESCRIPTION
|
|
|
1721
1729
|
configure the project to support EAS Update
|
|
1722
1730
|
```
|
|
1723
1731
|
|
|
1724
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1732
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1725
1733
|
|
|
1726
1734
|
## `eas update:delete GROUPID`
|
|
1727
1735
|
|
|
@@ -1742,7 +1750,7 @@ DESCRIPTION
|
|
|
1742
1750
|
delete all the updates in an update group
|
|
1743
1751
|
```
|
|
1744
1752
|
|
|
1745
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1753
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1746
1754
|
|
|
1747
1755
|
## `eas update:edit [GROUPID]`
|
|
1748
1756
|
|
|
@@ -1766,7 +1774,7 @@ DESCRIPTION
|
|
|
1766
1774
|
edit all the updates in an update group
|
|
1767
1775
|
```
|
|
1768
1776
|
|
|
1769
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1777
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1770
1778
|
|
|
1771
1779
|
## `eas update:list`
|
|
1772
1780
|
|
|
@@ -1788,7 +1796,7 @@ DESCRIPTION
|
|
|
1788
1796
|
view the recent updates
|
|
1789
1797
|
```
|
|
1790
1798
|
|
|
1791
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1799
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1792
1800
|
|
|
1793
1801
|
## `eas update:republish`
|
|
1794
1802
|
|
|
@@ -1824,7 +1832,7 @@ DESCRIPTION
|
|
|
1824
1832
|
roll back to an existing update
|
|
1825
1833
|
```
|
|
1826
1834
|
|
|
1827
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1835
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1828
1836
|
|
|
1829
1837
|
## `eas update:roll-back-to-embedded`
|
|
1830
1838
|
|
|
@@ -1852,7 +1860,7 @@ DESCRIPTION
|
|
|
1852
1860
|
roll back to the embedded update
|
|
1853
1861
|
```
|
|
1854
1862
|
|
|
1855
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1863
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1856
1864
|
|
|
1857
1865
|
## `eas update:rollback`
|
|
1858
1866
|
|
|
@@ -1872,7 +1880,7 @@ DESCRIPTION
|
|
|
1872
1880
|
roll back to an embedded update or an existing update
|
|
1873
1881
|
```
|
|
1874
1882
|
|
|
1875
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1883
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1876
1884
|
|
|
1877
1885
|
## `eas update:view GROUPID`
|
|
1878
1886
|
|
|
@@ -1892,7 +1900,7 @@ DESCRIPTION
|
|
|
1892
1900
|
update group details
|
|
1893
1901
|
```
|
|
1894
1902
|
|
|
1895
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1903
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1896
1904
|
|
|
1897
1905
|
## `eas webhook:create`
|
|
1898
1906
|
|
|
@@ -1913,7 +1921,7 @@ DESCRIPTION
|
|
|
1913
1921
|
create a webhook
|
|
1914
1922
|
```
|
|
1915
1923
|
|
|
1916
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1924
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1917
1925
|
|
|
1918
1926
|
## `eas webhook:delete [ID]`
|
|
1919
1927
|
|
|
@@ -1933,7 +1941,7 @@ DESCRIPTION
|
|
|
1933
1941
|
delete a webhook
|
|
1934
1942
|
```
|
|
1935
1943
|
|
|
1936
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1944
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1937
1945
|
|
|
1938
1946
|
## `eas webhook:list`
|
|
1939
1947
|
|
|
@@ -1951,7 +1959,7 @@ DESCRIPTION
|
|
|
1951
1959
|
list webhooks
|
|
1952
1960
|
```
|
|
1953
1961
|
|
|
1954
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1962
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1955
1963
|
|
|
1956
1964
|
## `eas webhook:update`
|
|
1957
1965
|
|
|
@@ -1973,7 +1981,7 @@ DESCRIPTION
|
|
|
1973
1981
|
update a webhook
|
|
1974
1982
|
```
|
|
1975
1983
|
|
|
1976
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1984
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1977
1985
|
|
|
1978
1986
|
## `eas webhook:view ID`
|
|
1979
1987
|
|
|
@@ -1990,7 +1998,7 @@ DESCRIPTION
|
|
|
1990
1998
|
view a webhook
|
|
1991
1999
|
```
|
|
1992
2000
|
|
|
1993
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2001
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1994
2002
|
|
|
1995
2003
|
## `eas whoami`
|
|
1996
2004
|
|
|
@@ -2074,7 +2082,24 @@ DESCRIPTION
|
|
|
2074
2082
|
create a new workflow configuration YAML file
|
|
2075
2083
|
```
|
|
2076
2084
|
|
|
2077
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2085
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2086
|
+
|
|
2087
|
+
## `eas workflow:list`
|
|
2088
|
+
|
|
2089
|
+
List workflows for the current project
|
|
2090
|
+
|
|
2091
|
+
```
|
|
2092
|
+
USAGE
|
|
2093
|
+
$ eas workflow:list [--json]
|
|
2094
|
+
|
|
2095
|
+
FLAGS
|
|
2096
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2097
|
+
|
|
2098
|
+
DESCRIPTION
|
|
2099
|
+
List workflows for the current project
|
|
2100
|
+
```
|
|
2101
|
+
|
|
2102
|
+
_See code: [packages/eas-cli/src/commands/workflow/list.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/workflow/list.ts)_
|
|
2078
2103
|
|
|
2079
2104
|
## `eas workflow:run [FILE]`
|
|
2080
2105
|
|
|
@@ -2101,7 +2126,32 @@ FLAG DESCRIPTIONS
|
|
|
2101
2126
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2102
2127
|
```
|
|
2103
2128
|
|
|
2104
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2129
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2130
|
+
|
|
2131
|
+
## `eas workflow:runs`
|
|
2132
|
+
|
|
2133
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2134
|
+
|
|
2135
|
+
```
|
|
2136
|
+
USAGE
|
|
2137
|
+
$ eas workflow:runs [--workflow <value>] [--status ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS]
|
|
2138
|
+
[--json] [--limit <value>]
|
|
2139
|
+
|
|
2140
|
+
FLAGS
|
|
2141
|
+
--json Enable JSON output, non-JSON messages will be
|
|
2142
|
+
printed to stderr.
|
|
2143
|
+
--limit=<value> The number of items to fetch each query. Defaults
|
|
2144
|
+
to 10 and is capped at 100.
|
|
2145
|
+
--status=(ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS) If present, filter the returned runs to select
|
|
2146
|
+
those with the specified status
|
|
2147
|
+
--workflow=<value> If present, the query will only return runs for
|
|
2148
|
+
the specified workflow file name
|
|
2149
|
+
|
|
2150
|
+
DESCRIPTION
|
|
2151
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2152
|
+
```
|
|
2153
|
+
|
|
2154
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2105
2155
|
|
|
2106
2156
|
## `eas workflow:validate PATH`
|
|
2107
2157
|
|
|
@@ -2121,5 +2171,5 @@ DESCRIPTION
|
|
|
2121
2171
|
validate a workflow configuration yaml file
|
|
2122
2172
|
```
|
|
2123
2173
|
|
|
2124
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2174
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.9.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2125
2175
|
<!-- commandsstop -->
|