eas-cli 16.7.2 → 16.8.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 +120 -76
- package/build/build/runBuildAndSubmit.js +4 -4
- 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/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 +131 -4
- package/build/graphql/generated.js +0 -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/oclif.manifest.json +74 -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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.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.8.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
626
628
|
|
|
627
629
|
## `eas build:submit`
|
|
628
630
|
|
|
@@ -672,7 +674,7 @@ DESCRIPTION
|
|
|
672
674
|
get the latest version from EAS servers
|
|
673
675
|
```
|
|
674
676
|
|
|
675
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
677
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
676
678
|
|
|
677
679
|
## `eas build:version:set`
|
|
678
680
|
|
|
@@ -691,7 +693,7 @@ DESCRIPTION
|
|
|
691
693
|
update version of an app
|
|
692
694
|
```
|
|
693
695
|
|
|
694
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
696
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
695
697
|
|
|
696
698
|
## `eas build:version:sync`
|
|
697
699
|
|
|
@@ -710,7 +712,7 @@ DESCRIPTION
|
|
|
710
712
|
update a version in native code with a value stored on EAS servers
|
|
711
713
|
```
|
|
712
714
|
|
|
713
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
715
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
714
716
|
|
|
715
717
|
## `eas build:view [BUILD_ID]`
|
|
716
718
|
|
|
@@ -727,7 +729,7 @@ DESCRIPTION
|
|
|
727
729
|
view a build for your project
|
|
728
730
|
```
|
|
729
731
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
732
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
731
733
|
|
|
732
734
|
## `eas channel:create [NAME]`
|
|
733
735
|
|
|
@@ -748,7 +750,7 @@ DESCRIPTION
|
|
|
748
750
|
create a channel
|
|
749
751
|
```
|
|
750
752
|
|
|
751
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
753
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
752
754
|
|
|
753
755
|
## `eas channel:edit [NAME]`
|
|
754
756
|
|
|
@@ -770,7 +772,7 @@ DESCRIPTION
|
|
|
770
772
|
point a channel at a new branch
|
|
771
773
|
```
|
|
772
774
|
|
|
773
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
775
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
774
776
|
|
|
775
777
|
## `eas channel:list`
|
|
776
778
|
|
|
@@ -790,7 +792,7 @@ DESCRIPTION
|
|
|
790
792
|
list all channels
|
|
791
793
|
```
|
|
792
794
|
|
|
793
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
795
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
794
796
|
|
|
795
797
|
## `eas channel:pause [NAME]`
|
|
796
798
|
|
|
@@ -812,7 +814,7 @@ DESCRIPTION
|
|
|
812
814
|
pause a channel to stop it from sending updates
|
|
813
815
|
```
|
|
814
816
|
|
|
815
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
817
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
816
818
|
|
|
817
819
|
## `eas channel:resume [NAME]`
|
|
818
820
|
|
|
@@ -834,7 +836,7 @@ DESCRIPTION
|
|
|
834
836
|
resume a channel to start sending updates
|
|
835
837
|
```
|
|
836
838
|
|
|
837
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
839
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
838
840
|
|
|
839
841
|
## `eas channel:rollout [CHANNEL]`
|
|
840
842
|
|
|
@@ -867,7 +869,7 @@ DESCRIPTION
|
|
|
867
869
|
Roll a new branch out on a channel incrementally.
|
|
868
870
|
```
|
|
869
871
|
|
|
870
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
872
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
871
873
|
|
|
872
874
|
## `eas channel:view [NAME]`
|
|
873
875
|
|
|
@@ -890,7 +892,7 @@ DESCRIPTION
|
|
|
890
892
|
view a channel
|
|
891
893
|
```
|
|
892
894
|
|
|
893
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
895
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
894
896
|
|
|
895
897
|
## `eas config`
|
|
896
898
|
|
|
@@ -911,7 +913,7 @@ DESCRIPTION
|
|
|
911
913
|
display project configuration (app.json + eas.json)
|
|
912
914
|
```
|
|
913
915
|
|
|
914
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
916
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/config.ts)_
|
|
915
917
|
|
|
916
918
|
## `eas credentials`
|
|
917
919
|
|
|
@@ -928,7 +930,7 @@ DESCRIPTION
|
|
|
928
930
|
manage credentials
|
|
929
931
|
```
|
|
930
932
|
|
|
931
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
933
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
932
934
|
|
|
933
935
|
## `eas credentials:configure-build`
|
|
934
936
|
|
|
@@ -946,7 +948,7 @@ DESCRIPTION
|
|
|
946
948
|
Set up credentials for building your project.
|
|
947
949
|
```
|
|
948
950
|
|
|
949
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
951
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
950
952
|
|
|
951
953
|
## `eas deploy [2m[options][22m`
|
|
952
954
|
|
|
@@ -974,7 +976,7 @@ ALIASES
|
|
|
974
976
|
$ eas worker:deploy
|
|
975
977
|
```
|
|
976
978
|
|
|
977
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
979
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
978
980
|
|
|
979
981
|
## `eas deploy:alias`
|
|
980
982
|
|
|
@@ -999,7 +1001,7 @@ ALIASES
|
|
|
999
1001
|
$ eas deploy:promote
|
|
1000
1002
|
```
|
|
1001
1003
|
|
|
1002
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1004
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
1003
1005
|
|
|
1004
1006
|
## `eas deploy:promote`
|
|
1005
1007
|
|
|
@@ -1036,7 +1038,7 @@ DESCRIPTION
|
|
|
1036
1038
|
register new Apple Devices to use for internal distribution
|
|
1037
1039
|
```
|
|
1038
1040
|
|
|
1039
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1041
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1040
1042
|
|
|
1041
1043
|
## `eas device:delete`
|
|
1042
1044
|
|
|
@@ -1056,7 +1058,7 @@ DESCRIPTION
|
|
|
1056
1058
|
remove a registered device from your account
|
|
1057
1059
|
```
|
|
1058
1060
|
|
|
1059
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1061
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1060
1062
|
|
|
1061
1063
|
## `eas device:list`
|
|
1062
1064
|
|
|
@@ -1077,7 +1079,7 @@ DESCRIPTION
|
|
|
1077
1079
|
list all registered devices for your account
|
|
1078
1080
|
```
|
|
1079
1081
|
|
|
1080
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1082
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1081
1083
|
|
|
1082
1084
|
## `eas device:rename`
|
|
1083
1085
|
|
|
@@ -1098,7 +1100,7 @@ DESCRIPTION
|
|
|
1098
1100
|
rename a registered device
|
|
1099
1101
|
```
|
|
1100
1102
|
|
|
1101
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1103
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1102
1104
|
|
|
1103
1105
|
## `eas device:view [UDID]`
|
|
1104
1106
|
|
|
@@ -1112,7 +1114,7 @@ DESCRIPTION
|
|
|
1112
1114
|
view a device for your project
|
|
1113
1115
|
```
|
|
1114
1116
|
|
|
1115
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1117
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1116
1118
|
|
|
1117
1119
|
## `eas diagnostics`
|
|
1118
1120
|
|
|
@@ -1126,7 +1128,7 @@ DESCRIPTION
|
|
|
1126
1128
|
display environment info
|
|
1127
1129
|
```
|
|
1128
1130
|
|
|
1129
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1131
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1130
1132
|
|
|
1131
1133
|
## `eas env:create [ENVIRONMENT]`
|
|
1132
1134
|
|
|
@@ -1155,7 +1157,7 @@ DESCRIPTION
|
|
|
1155
1157
|
create an environment variable for the current project or account
|
|
1156
1158
|
```
|
|
1157
1159
|
|
|
1158
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1160
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1159
1161
|
|
|
1160
1162
|
## `eas env:delete [ENVIRONMENT]`
|
|
1161
1163
|
|
|
@@ -1179,7 +1181,7 @@ DESCRIPTION
|
|
|
1179
1181
|
delete an environment variable for the current project or account
|
|
1180
1182
|
```
|
|
1181
1183
|
|
|
1182
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1184
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1183
1185
|
|
|
1184
1186
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1185
1187
|
|
|
@@ -1200,7 +1202,7 @@ DESCRIPTION
|
|
|
1200
1202
|
execute a command with environment variables from the selected environment
|
|
1201
1203
|
```
|
|
1202
1204
|
|
|
1203
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1205
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1204
1206
|
|
|
1205
1207
|
## `eas env:get [ENVIRONMENT]`
|
|
1206
1208
|
|
|
@@ -1225,7 +1227,7 @@ DESCRIPTION
|
|
|
1225
1227
|
view an environment variable for the current project or account
|
|
1226
1228
|
```
|
|
1227
1229
|
|
|
1228
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1230
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1229
1231
|
|
|
1230
1232
|
## `eas env:list [ENVIRONMENT]`
|
|
1231
1233
|
|
|
@@ -1250,7 +1252,7 @@ DESCRIPTION
|
|
|
1250
1252
|
list environment variables for the current project or account
|
|
1251
1253
|
```
|
|
1252
1254
|
|
|
1253
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1255
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1254
1256
|
|
|
1255
1257
|
## `eas env:pull [ENVIRONMENT]`
|
|
1256
1258
|
|
|
@@ -1273,7 +1275,7 @@ DESCRIPTION
|
|
|
1273
1275
|
pull environment variables for the selected environment to .env file
|
|
1274
1276
|
```
|
|
1275
1277
|
|
|
1276
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1278
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1277
1279
|
|
|
1278
1280
|
## `eas env:push [ENVIRONMENT]`
|
|
1279
1281
|
|
|
@@ -1294,7 +1296,7 @@ DESCRIPTION
|
|
|
1294
1296
|
push environment variables from .env file to the selected environment
|
|
1295
1297
|
```
|
|
1296
1298
|
|
|
1297
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1299
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1298
1300
|
|
|
1299
1301
|
## `eas env:update [ENVIRONMENT]`
|
|
1300
1302
|
|
|
@@ -1325,7 +1327,7 @@ DESCRIPTION
|
|
|
1325
1327
|
update an environment variable on the current project or account
|
|
1326
1328
|
```
|
|
1327
1329
|
|
|
1328
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1330
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1329
1331
|
|
|
1330
1332
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1331
1333
|
|
|
@@ -1370,7 +1372,7 @@ EXAMPLES
|
|
|
1370
1372
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1371
1373
|
```
|
|
1372
1374
|
|
|
1373
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1375
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1374
1376
|
|
|
1375
1377
|
## `eas fingerprint:generate`
|
|
1376
1378
|
|
|
@@ -1401,7 +1403,7 @@ EXAMPLES
|
|
|
1401
1403
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1402
1404
|
```
|
|
1403
1405
|
|
|
1404
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1406
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1405
1407
|
|
|
1406
1408
|
## `eas help [COMMAND]`
|
|
1407
1409
|
|
|
@@ -1509,7 +1511,7 @@ DESCRIPTION
|
|
|
1509
1511
|
validate the local store configuration
|
|
1510
1512
|
```
|
|
1511
1513
|
|
|
1512
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1514
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1513
1515
|
|
|
1514
1516
|
## `eas metadata:pull`
|
|
1515
1517
|
|
|
@@ -1526,7 +1528,7 @@ DESCRIPTION
|
|
|
1526
1528
|
generate the local store configuration from the app stores
|
|
1527
1529
|
```
|
|
1528
1530
|
|
|
1529
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1531
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1530
1532
|
|
|
1531
1533
|
## `eas metadata:push`
|
|
1532
1534
|
|
|
@@ -1543,7 +1545,7 @@ DESCRIPTION
|
|
|
1543
1545
|
sync the local store configuration to the app stores
|
|
1544
1546
|
```
|
|
1545
1547
|
|
|
1546
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1548
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1547
1549
|
|
|
1548
1550
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1549
1551
|
|
|
@@ -1573,7 +1575,7 @@ DESCRIPTION
|
|
|
1573
1575
|
open the project page in a web browser
|
|
1574
1576
|
```
|
|
1575
1577
|
|
|
1576
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1578
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/open.ts)_
|
|
1577
1579
|
|
|
1578
1580
|
## `eas project:info`
|
|
1579
1581
|
|
|
@@ -1587,7 +1589,7 @@ DESCRIPTION
|
|
|
1587
1589
|
information about the current project
|
|
1588
1590
|
```
|
|
1589
1591
|
|
|
1590
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1592
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1591
1593
|
|
|
1592
1594
|
## `eas project:init`
|
|
1593
1595
|
|
|
@@ -1610,7 +1612,7 @@ ALIASES
|
|
|
1610
1612
|
$ eas init
|
|
1611
1613
|
```
|
|
1612
1614
|
|
|
1613
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1615
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1614
1616
|
|
|
1615
1617
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1616
1618
|
|
|
@@ -1628,7 +1630,7 @@ ALIASES
|
|
|
1628
1630
|
$ eas onboarding
|
|
1629
1631
|
```
|
|
1630
1632
|
|
|
1631
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1633
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1632
1634
|
|
|
1633
1635
|
## `eas submit`
|
|
1634
1636
|
|
|
@@ -1659,7 +1661,7 @@ ALIASES
|
|
|
1659
1661
|
$ eas build:submit
|
|
1660
1662
|
```
|
|
1661
1663
|
|
|
1662
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1664
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1663
1665
|
|
|
1664
1666
|
## `eas update`
|
|
1665
1667
|
|
|
@@ -1701,7 +1703,7 @@ DESCRIPTION
|
|
|
1701
1703
|
publish an update group
|
|
1702
1704
|
```
|
|
1703
1705
|
|
|
1704
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1706
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1705
1707
|
|
|
1706
1708
|
## `eas update:configure`
|
|
1707
1709
|
|
|
@@ -1721,7 +1723,7 @@ DESCRIPTION
|
|
|
1721
1723
|
configure the project to support EAS Update
|
|
1722
1724
|
```
|
|
1723
1725
|
|
|
1724
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1726
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1725
1727
|
|
|
1726
1728
|
## `eas update:delete GROUPID`
|
|
1727
1729
|
|
|
@@ -1742,7 +1744,7 @@ DESCRIPTION
|
|
|
1742
1744
|
delete all the updates in an update group
|
|
1743
1745
|
```
|
|
1744
1746
|
|
|
1745
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1747
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1746
1748
|
|
|
1747
1749
|
## `eas update:edit [GROUPID]`
|
|
1748
1750
|
|
|
@@ -1766,7 +1768,7 @@ DESCRIPTION
|
|
|
1766
1768
|
edit all the updates in an update group
|
|
1767
1769
|
```
|
|
1768
1770
|
|
|
1769
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1771
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1770
1772
|
|
|
1771
1773
|
## `eas update:list`
|
|
1772
1774
|
|
|
@@ -1788,7 +1790,7 @@ DESCRIPTION
|
|
|
1788
1790
|
view the recent updates
|
|
1789
1791
|
```
|
|
1790
1792
|
|
|
1791
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1793
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1792
1794
|
|
|
1793
1795
|
## `eas update:republish`
|
|
1794
1796
|
|
|
@@ -1824,7 +1826,7 @@ DESCRIPTION
|
|
|
1824
1826
|
roll back to an existing update
|
|
1825
1827
|
```
|
|
1826
1828
|
|
|
1827
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1829
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1828
1830
|
|
|
1829
1831
|
## `eas update:roll-back-to-embedded`
|
|
1830
1832
|
|
|
@@ -1852,7 +1854,7 @@ DESCRIPTION
|
|
|
1852
1854
|
roll back to the embedded update
|
|
1853
1855
|
```
|
|
1854
1856
|
|
|
1855
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1857
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1856
1858
|
|
|
1857
1859
|
## `eas update:rollback`
|
|
1858
1860
|
|
|
@@ -1872,7 +1874,7 @@ DESCRIPTION
|
|
|
1872
1874
|
roll back to an embedded update or an existing update
|
|
1873
1875
|
```
|
|
1874
1876
|
|
|
1875
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1877
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1876
1878
|
|
|
1877
1879
|
## `eas update:view GROUPID`
|
|
1878
1880
|
|
|
@@ -1892,7 +1894,7 @@ DESCRIPTION
|
|
|
1892
1894
|
update group details
|
|
1893
1895
|
```
|
|
1894
1896
|
|
|
1895
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1897
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1896
1898
|
|
|
1897
1899
|
## `eas webhook:create`
|
|
1898
1900
|
|
|
@@ -1913,7 +1915,7 @@ DESCRIPTION
|
|
|
1913
1915
|
create a webhook
|
|
1914
1916
|
```
|
|
1915
1917
|
|
|
1916
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1918
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1917
1919
|
|
|
1918
1920
|
## `eas webhook:delete [ID]`
|
|
1919
1921
|
|
|
@@ -1933,7 +1935,7 @@ DESCRIPTION
|
|
|
1933
1935
|
delete a webhook
|
|
1934
1936
|
```
|
|
1935
1937
|
|
|
1936
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1938
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1937
1939
|
|
|
1938
1940
|
## `eas webhook:list`
|
|
1939
1941
|
|
|
@@ -1951,7 +1953,7 @@ DESCRIPTION
|
|
|
1951
1953
|
list webhooks
|
|
1952
1954
|
```
|
|
1953
1955
|
|
|
1954
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1956
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1955
1957
|
|
|
1956
1958
|
## `eas webhook:update`
|
|
1957
1959
|
|
|
@@ -1973,7 +1975,7 @@ DESCRIPTION
|
|
|
1973
1975
|
update a webhook
|
|
1974
1976
|
```
|
|
1975
1977
|
|
|
1976
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1978
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1977
1979
|
|
|
1978
1980
|
## `eas webhook:view ID`
|
|
1979
1981
|
|
|
@@ -1990,7 +1992,7 @@ DESCRIPTION
|
|
|
1990
1992
|
view a webhook
|
|
1991
1993
|
```
|
|
1992
1994
|
|
|
1993
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1995
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1994
1996
|
|
|
1995
1997
|
## `eas whoami`
|
|
1996
1998
|
|
|
@@ -2074,7 +2076,24 @@ DESCRIPTION
|
|
|
2074
2076
|
create a new workflow configuration YAML file
|
|
2075
2077
|
```
|
|
2076
2078
|
|
|
2077
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2079
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2080
|
+
|
|
2081
|
+
## `eas workflow:list`
|
|
2082
|
+
|
|
2083
|
+
List workflows for the current project
|
|
2084
|
+
|
|
2085
|
+
```
|
|
2086
|
+
USAGE
|
|
2087
|
+
$ eas workflow:list [--json]
|
|
2088
|
+
|
|
2089
|
+
FLAGS
|
|
2090
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2091
|
+
|
|
2092
|
+
DESCRIPTION
|
|
2093
|
+
List workflows for the current project
|
|
2094
|
+
```
|
|
2095
|
+
|
|
2096
|
+
_See code: [packages/eas-cli/src/commands/workflow/list.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/workflow/list.ts)_
|
|
2078
2097
|
|
|
2079
2098
|
## `eas workflow:run [FILE]`
|
|
2080
2099
|
|
|
@@ -2101,7 +2120,32 @@ FLAG DESCRIPTIONS
|
|
|
2101
2120
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2102
2121
|
```
|
|
2103
2122
|
|
|
2104
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2123
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2124
|
+
|
|
2125
|
+
## `eas workflow:runs`
|
|
2126
|
+
|
|
2127
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2128
|
+
|
|
2129
|
+
```
|
|
2130
|
+
USAGE
|
|
2131
|
+
$ eas workflow:runs [--workflow <value>] [--status ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS]
|
|
2132
|
+
[--json] [--limit <value>]
|
|
2133
|
+
|
|
2134
|
+
FLAGS
|
|
2135
|
+
--json Enable JSON output, non-JSON messages will be
|
|
2136
|
+
printed to stderr.
|
|
2137
|
+
--limit=<value> The number of items to fetch each query. Defaults
|
|
2138
|
+
to 10 and is capped at 100.
|
|
2139
|
+
--status=(ACTION_REQUIRED|CANCELED|FAILURE|IN_PROGRESS|NEW|SUCCESS) If present, filter the returned runs to select
|
|
2140
|
+
those with the specified status
|
|
2141
|
+
--workflow=<value> If present, the query will only return runs for
|
|
2142
|
+
the specified workflow file name
|
|
2143
|
+
|
|
2144
|
+
DESCRIPTION
|
|
2145
|
+
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2146
|
+
```
|
|
2147
|
+
|
|
2148
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2105
2149
|
|
|
2106
2150
|
## `eas workflow:validate PATH`
|
|
2107
2151
|
|
|
@@ -2121,5 +2165,5 @@ DESCRIPTION
|
|
|
2121
2165
|
validate a workflow configuration yaml file
|
|
2122
2166
|
```
|
|
2123
2167
|
|
|
2124
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2168
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.8.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2125
2169
|
<!-- commandsstop -->
|