eas-cli 16.14.1 → 16.16.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 +137 -84
- package/build/commandUtils/workflow/fetchLogs.d.ts +2 -0
- package/build/commandUtils/workflow/fetchLogs.js +16 -0
- package/build/commandUtils/workflow/stateMachine.d.ts +44 -0
- package/build/commandUtils/workflow/stateMachine.js +212 -0
- package/build/commandUtils/workflow/types.d.ts +39 -0
- package/build/commandUtils/workflow/types.js +13 -0
- package/build/commandUtils/workflow/utils.d.ts +12 -0
- package/build/commandUtils/workflow/utils.js +116 -0
- package/build/commands/deploy/index.js +47 -49
- package/build/commands/workflow/cancel.js +3 -6
- package/build/commands/workflow/logs.d.ts +18 -0
- package/build/commands/workflow/logs.js +94 -0
- package/build/commands/workflow/run.d.ts +105 -0
- package/build/commands/workflow/run.js +280 -0
- package/build/commands/workflow/runs.js +4 -3
- package/build/commands/workflow/view.d.ts +17 -0
- package/build/commands/workflow/view.js +95 -0
- package/build/credentials/ios/appstore/bundleIdCapabilities.d.ts +4 -17
- package/build/credentials/ios/appstore/bundleIdCapabilities.js +45 -625
- package/build/credentials/ios/appstore/capabilityIdentifiers.js +33 -34
- package/build/credentials/ios/appstore/capabilityList.d.ts +33 -0
- package/build/credentials/ios/appstore/capabilityList.js +646 -0
- package/build/graphql/generated.d.ts +236 -19
- package/build/graphql/queries/WorkflowJobQuery.d.ts +7 -0
- package/build/graphql/queries/WorkflowJobQuery.js +29 -0
- package/build/graphql/queries/WorkflowRunQuery.js +13 -13
- package/build/graphql/types/WorkflowJob.d.ts +1 -0
- package/build/graphql/types/WorkflowJob.js +32 -0
- package/build/graphql/types/WorkflowRun.js +18 -0
- package/build/worker/assets.d.ts +19 -16
- package/build/worker/assets.js +51 -22
- package/build/worker/upload.d.ts +21 -9
- package/build/worker/upload.js +98 -80
- package/build/worker/utils/multipart.d.ts +11 -0
- package/build/worker/utils/multipart.js +98 -0
- package/oclif.manifest.json +85 -1
- package/package.json +2 -2
- package/build/commandUtils/workflows.d.ts +0 -20
- package/build/commandUtils/workflows.js +0 -21
package/README.md
CHANGED
|
@@ -144,9 +144,11 @@ eas --help COMMAND
|
|
|
144
144
|
* [`eas deploy [2m[options][22m`](#eas-deploy-2moptions22m-1)
|
|
145
145
|
* [`eas workflow:cancel`](#eas-workflowcancel)
|
|
146
146
|
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
147
|
+
* [`eas workflow:logs [ID]`](#eas-workflowlogs-id)
|
|
147
148
|
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
148
149
|
* [`eas workflow:runs`](#eas-workflowruns)
|
|
149
150
|
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
151
|
+
* [`eas workflow:view [ID]`](#eas-workflowview-id)
|
|
150
152
|
|
|
151
153
|
## `eas account:login`
|
|
152
154
|
|
|
@@ -166,7 +168,7 @@ ALIASES
|
|
|
166
168
|
$ eas login
|
|
167
169
|
```
|
|
168
170
|
|
|
169
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
171
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
170
172
|
|
|
171
173
|
## `eas account:logout`
|
|
172
174
|
|
|
@@ -183,7 +185,7 @@ ALIASES
|
|
|
183
185
|
$ eas logout
|
|
184
186
|
```
|
|
185
187
|
|
|
186
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
188
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
187
189
|
|
|
188
190
|
## `eas account:view`
|
|
189
191
|
|
|
@@ -200,7 +202,7 @@ ALIASES
|
|
|
200
202
|
$ eas whoami
|
|
201
203
|
```
|
|
202
204
|
|
|
203
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
205
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
204
206
|
|
|
205
207
|
## `eas analytics [STATUS]`
|
|
206
208
|
|
|
@@ -214,7 +216,7 @@ DESCRIPTION
|
|
|
214
216
|
display or change analytics settings
|
|
215
217
|
```
|
|
216
218
|
|
|
217
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
219
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
218
220
|
|
|
219
221
|
## `eas autocomplete [SHELL]`
|
|
220
222
|
|
|
@@ -266,7 +268,7 @@ DESCRIPTION
|
|
|
266
268
|
create a branch
|
|
267
269
|
```
|
|
268
270
|
|
|
269
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
271
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
270
272
|
|
|
271
273
|
## `eas branch:delete [NAME]`
|
|
272
274
|
|
|
@@ -287,7 +289,7 @@ DESCRIPTION
|
|
|
287
289
|
delete a branch
|
|
288
290
|
```
|
|
289
291
|
|
|
290
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
292
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
291
293
|
|
|
292
294
|
## `eas branch:list`
|
|
293
295
|
|
|
@@ -307,7 +309,7 @@ DESCRIPTION
|
|
|
307
309
|
list all branches
|
|
308
310
|
```
|
|
309
311
|
|
|
310
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
312
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
311
313
|
|
|
312
314
|
## `eas branch:rename`
|
|
313
315
|
|
|
@@ -327,7 +329,7 @@ DESCRIPTION
|
|
|
327
329
|
rename a branch
|
|
328
330
|
```
|
|
329
331
|
|
|
330
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
332
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
331
333
|
|
|
332
334
|
## `eas branch:view [NAME]`
|
|
333
335
|
|
|
@@ -350,7 +352,7 @@ DESCRIPTION
|
|
|
350
352
|
view a branch
|
|
351
353
|
```
|
|
352
354
|
|
|
353
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
355
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
354
356
|
|
|
355
357
|
## `eas build`
|
|
356
358
|
|
|
@@ -391,7 +393,7 @@ DESCRIPTION
|
|
|
391
393
|
start a build
|
|
392
394
|
```
|
|
393
395
|
|
|
394
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
396
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
395
397
|
|
|
396
398
|
## `eas build:cancel [BUILD_ID]`
|
|
397
399
|
|
|
@@ -410,7 +412,7 @@ DESCRIPTION
|
|
|
410
412
|
cancel a build
|
|
411
413
|
```
|
|
412
414
|
|
|
413
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
415
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
414
416
|
|
|
415
417
|
## `eas build:configure`
|
|
416
418
|
|
|
@@ -427,7 +429,7 @@ DESCRIPTION
|
|
|
427
429
|
configure the project to support EAS Build
|
|
428
430
|
```
|
|
429
431
|
|
|
430
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
432
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
431
433
|
|
|
432
434
|
## `eas build:delete [BUILD_ID]`
|
|
433
435
|
|
|
@@ -446,7 +448,7 @@ DESCRIPTION
|
|
|
446
448
|
delete a build
|
|
447
449
|
```
|
|
448
450
|
|
|
449
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
451
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
450
452
|
|
|
451
453
|
## `eas build:dev`
|
|
452
454
|
|
|
@@ -466,7 +468,7 @@ DESCRIPTION
|
|
|
466
468
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
467
469
|
```
|
|
468
470
|
|
|
469
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
471
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
470
472
|
|
|
471
473
|
## `eas build:download`
|
|
472
474
|
|
|
@@ -487,7 +489,7 @@ DESCRIPTION
|
|
|
487
489
|
download simulator/emulator builds for a given fingerprint hash
|
|
488
490
|
```
|
|
489
491
|
|
|
490
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
492
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
491
493
|
|
|
492
494
|
## `eas build:inspect`
|
|
493
495
|
|
|
@@ -522,7 +524,7 @@ DESCRIPTION
|
|
|
522
524
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
523
525
|
```
|
|
524
526
|
|
|
525
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
527
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
526
528
|
|
|
527
529
|
## `eas build:list`
|
|
528
530
|
|
|
@@ -574,7 +576,7 @@ DESCRIPTION
|
|
|
574
576
|
list all builds for your project
|
|
575
577
|
```
|
|
576
578
|
|
|
577
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
579
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
578
580
|
|
|
579
581
|
## `eas build:resign`
|
|
580
582
|
|
|
@@ -603,7 +605,7 @@ DESCRIPTION
|
|
|
603
605
|
re-sign a build archive
|
|
604
606
|
```
|
|
605
607
|
|
|
606
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
608
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
607
609
|
|
|
608
610
|
## `eas build:run`
|
|
609
611
|
|
|
@@ -629,7 +631,7 @@ DESCRIPTION
|
|
|
629
631
|
run simulator/emulator builds from eas-cli
|
|
630
632
|
```
|
|
631
633
|
|
|
632
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
634
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
633
635
|
|
|
634
636
|
## `eas build:submit`
|
|
635
637
|
|
|
@@ -683,7 +685,7 @@ DESCRIPTION
|
|
|
683
685
|
get the latest version from EAS servers
|
|
684
686
|
```
|
|
685
687
|
|
|
686
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
688
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
687
689
|
|
|
688
690
|
## `eas build:version:set`
|
|
689
691
|
|
|
@@ -702,7 +704,7 @@ DESCRIPTION
|
|
|
702
704
|
update version of an app
|
|
703
705
|
```
|
|
704
706
|
|
|
705
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
707
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
706
708
|
|
|
707
709
|
## `eas build:version:sync`
|
|
708
710
|
|
|
@@ -721,7 +723,7 @@ DESCRIPTION
|
|
|
721
723
|
update a version in native code with a value stored on EAS servers
|
|
722
724
|
```
|
|
723
725
|
|
|
724
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
726
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
725
727
|
|
|
726
728
|
## `eas build:view [BUILD_ID]`
|
|
727
729
|
|
|
@@ -738,7 +740,7 @@ DESCRIPTION
|
|
|
738
740
|
view a build for your project
|
|
739
741
|
```
|
|
740
742
|
|
|
741
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
743
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
742
744
|
|
|
743
745
|
## `eas channel:create [NAME]`
|
|
744
746
|
|
|
@@ -759,7 +761,7 @@ DESCRIPTION
|
|
|
759
761
|
create a channel
|
|
760
762
|
```
|
|
761
763
|
|
|
762
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
764
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
763
765
|
|
|
764
766
|
## `eas channel:edit [NAME]`
|
|
765
767
|
|
|
@@ -781,7 +783,7 @@ DESCRIPTION
|
|
|
781
783
|
point a channel at a new branch
|
|
782
784
|
```
|
|
783
785
|
|
|
784
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
786
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
785
787
|
|
|
786
788
|
## `eas channel:list`
|
|
787
789
|
|
|
@@ -801,7 +803,7 @@ DESCRIPTION
|
|
|
801
803
|
list all channels
|
|
802
804
|
```
|
|
803
805
|
|
|
804
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
806
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
805
807
|
|
|
806
808
|
## `eas channel:pause [NAME]`
|
|
807
809
|
|
|
@@ -823,7 +825,7 @@ DESCRIPTION
|
|
|
823
825
|
pause a channel to stop it from sending updates
|
|
824
826
|
```
|
|
825
827
|
|
|
826
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
828
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
827
829
|
|
|
828
830
|
## `eas channel:resume [NAME]`
|
|
829
831
|
|
|
@@ -845,7 +847,7 @@ DESCRIPTION
|
|
|
845
847
|
resume a channel to start sending updates
|
|
846
848
|
```
|
|
847
849
|
|
|
848
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
850
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
849
851
|
|
|
850
852
|
## `eas channel:rollout [CHANNEL]`
|
|
851
853
|
|
|
@@ -878,7 +880,7 @@ DESCRIPTION
|
|
|
878
880
|
Roll a new branch out on a channel incrementally.
|
|
879
881
|
```
|
|
880
882
|
|
|
881
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
883
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
882
884
|
|
|
883
885
|
## `eas channel:view [NAME]`
|
|
884
886
|
|
|
@@ -901,7 +903,7 @@ DESCRIPTION
|
|
|
901
903
|
view a channel
|
|
902
904
|
```
|
|
903
905
|
|
|
904
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
906
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
905
907
|
|
|
906
908
|
## `eas config`
|
|
907
909
|
|
|
@@ -922,7 +924,7 @@ DESCRIPTION
|
|
|
922
924
|
display project configuration (app.json + eas.json)
|
|
923
925
|
```
|
|
924
926
|
|
|
925
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
927
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/config.ts)_
|
|
926
928
|
|
|
927
929
|
## `eas credentials`
|
|
928
930
|
|
|
@@ -939,7 +941,7 @@ DESCRIPTION
|
|
|
939
941
|
manage credentials
|
|
940
942
|
```
|
|
941
943
|
|
|
942
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
944
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
943
945
|
|
|
944
946
|
## `eas credentials:configure-build`
|
|
945
947
|
|
|
@@ -957,7 +959,7 @@ DESCRIPTION
|
|
|
957
959
|
Set up credentials for building your project.
|
|
958
960
|
```
|
|
959
961
|
|
|
960
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
962
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
961
963
|
|
|
962
964
|
## `eas deploy [2m[options][22m`
|
|
963
965
|
|
|
@@ -985,7 +987,7 @@ ALIASES
|
|
|
985
987
|
$ eas worker:deploy
|
|
986
988
|
```
|
|
987
989
|
|
|
988
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
990
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
989
991
|
|
|
990
992
|
## `eas deploy:alias`
|
|
991
993
|
|
|
@@ -1010,7 +1012,7 @@ ALIASES
|
|
|
1010
1012
|
$ eas deploy:promote
|
|
1011
1013
|
```
|
|
1012
1014
|
|
|
1013
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
1014
1016
|
|
|
1015
1017
|
## `eas deploy:promote`
|
|
1016
1018
|
|
|
@@ -1047,7 +1049,7 @@ DESCRIPTION
|
|
|
1047
1049
|
register new Apple Devices to use for internal distribution
|
|
1048
1050
|
```
|
|
1049
1051
|
|
|
1050
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1052
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1051
1053
|
|
|
1052
1054
|
## `eas device:delete`
|
|
1053
1055
|
|
|
@@ -1067,7 +1069,7 @@ DESCRIPTION
|
|
|
1067
1069
|
remove a registered device from your account
|
|
1068
1070
|
```
|
|
1069
1071
|
|
|
1070
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1072
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1071
1073
|
|
|
1072
1074
|
## `eas device:list`
|
|
1073
1075
|
|
|
@@ -1088,7 +1090,7 @@ DESCRIPTION
|
|
|
1088
1090
|
list all registered devices for your account
|
|
1089
1091
|
```
|
|
1090
1092
|
|
|
1091
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1093
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1092
1094
|
|
|
1093
1095
|
## `eas device:rename`
|
|
1094
1096
|
|
|
@@ -1109,7 +1111,7 @@ DESCRIPTION
|
|
|
1109
1111
|
rename a registered device
|
|
1110
1112
|
```
|
|
1111
1113
|
|
|
1112
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1114
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1113
1115
|
|
|
1114
1116
|
## `eas device:view [UDID]`
|
|
1115
1117
|
|
|
@@ -1123,7 +1125,7 @@ DESCRIPTION
|
|
|
1123
1125
|
view a device for your project
|
|
1124
1126
|
```
|
|
1125
1127
|
|
|
1126
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1128
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1127
1129
|
|
|
1128
1130
|
## `eas diagnostics`
|
|
1129
1131
|
|
|
@@ -1137,7 +1139,7 @@ DESCRIPTION
|
|
|
1137
1139
|
display environment info
|
|
1138
1140
|
```
|
|
1139
1141
|
|
|
1140
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1142
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1141
1143
|
|
|
1142
1144
|
## `eas env:create [ENVIRONMENT]`
|
|
1143
1145
|
|
|
@@ -1166,7 +1168,7 @@ DESCRIPTION
|
|
|
1166
1168
|
create an environment variable for the current project or account
|
|
1167
1169
|
```
|
|
1168
1170
|
|
|
1169
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1171
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1170
1172
|
|
|
1171
1173
|
## `eas env:delete [ENVIRONMENT]`
|
|
1172
1174
|
|
|
@@ -1190,7 +1192,7 @@ DESCRIPTION
|
|
|
1190
1192
|
delete an environment variable for the current project or account
|
|
1191
1193
|
```
|
|
1192
1194
|
|
|
1193
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1195
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1194
1196
|
|
|
1195
1197
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1196
1198
|
|
|
@@ -1211,7 +1213,7 @@ DESCRIPTION
|
|
|
1211
1213
|
execute a command with environment variables from the selected environment
|
|
1212
1214
|
```
|
|
1213
1215
|
|
|
1214
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1216
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1215
1217
|
|
|
1216
1218
|
## `eas env:get [ENVIRONMENT]`
|
|
1217
1219
|
|
|
@@ -1236,7 +1238,7 @@ DESCRIPTION
|
|
|
1236
1238
|
view an environment variable for the current project or account
|
|
1237
1239
|
```
|
|
1238
1240
|
|
|
1239
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1241
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1240
1242
|
|
|
1241
1243
|
## `eas env:list [ENVIRONMENT]`
|
|
1242
1244
|
|
|
@@ -1261,7 +1263,7 @@ DESCRIPTION
|
|
|
1261
1263
|
list environment variables for the current project or account
|
|
1262
1264
|
```
|
|
1263
1265
|
|
|
1264
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1266
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1265
1267
|
|
|
1266
1268
|
## `eas env:pull [ENVIRONMENT]`
|
|
1267
1269
|
|
|
@@ -1284,7 +1286,7 @@ DESCRIPTION
|
|
|
1284
1286
|
pull environment variables for the selected environment to .env file
|
|
1285
1287
|
```
|
|
1286
1288
|
|
|
1287
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1289
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1288
1290
|
|
|
1289
1291
|
## `eas env:push [ENVIRONMENT]`
|
|
1290
1292
|
|
|
@@ -1305,7 +1307,7 @@ DESCRIPTION
|
|
|
1305
1307
|
push environment variables from .env file to the selected environment
|
|
1306
1308
|
```
|
|
1307
1309
|
|
|
1308
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1310
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1309
1311
|
|
|
1310
1312
|
## `eas env:update [ENVIRONMENT]`
|
|
1311
1313
|
|
|
@@ -1336,7 +1338,7 @@ DESCRIPTION
|
|
|
1336
1338
|
update an environment variable on the current project or account
|
|
1337
1339
|
```
|
|
1338
1340
|
|
|
1339
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1341
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1340
1342
|
|
|
1341
1343
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1342
1344
|
|
|
@@ -1381,7 +1383,7 @@ EXAMPLES
|
|
|
1381
1383
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1382
1384
|
```
|
|
1383
1385
|
|
|
1384
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1386
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1385
1387
|
|
|
1386
1388
|
## `eas fingerprint:generate`
|
|
1387
1389
|
|
|
@@ -1412,7 +1414,7 @@ EXAMPLES
|
|
|
1412
1414
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1413
1415
|
```
|
|
1414
1416
|
|
|
1415
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1417
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1416
1418
|
|
|
1417
1419
|
## `eas help [COMMAND]`
|
|
1418
1420
|
|
|
@@ -1520,7 +1522,7 @@ DESCRIPTION
|
|
|
1520
1522
|
validate the local store configuration
|
|
1521
1523
|
```
|
|
1522
1524
|
|
|
1523
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1525
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1524
1526
|
|
|
1525
1527
|
## `eas metadata:pull`
|
|
1526
1528
|
|
|
@@ -1537,7 +1539,7 @@ DESCRIPTION
|
|
|
1537
1539
|
generate the local store configuration from the app stores
|
|
1538
1540
|
```
|
|
1539
1541
|
|
|
1540
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1542
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1541
1543
|
|
|
1542
1544
|
## `eas metadata:push`
|
|
1543
1545
|
|
|
@@ -1554,7 +1556,7 @@ DESCRIPTION
|
|
|
1554
1556
|
sync the local store configuration to the app stores
|
|
1555
1557
|
```
|
|
1556
1558
|
|
|
1557
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1559
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1558
1560
|
|
|
1559
1561
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1560
1562
|
|
|
@@ -1584,7 +1586,7 @@ DESCRIPTION
|
|
|
1584
1586
|
open the project page in a web browser
|
|
1585
1587
|
```
|
|
1586
1588
|
|
|
1587
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1589
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/open.ts)_
|
|
1588
1590
|
|
|
1589
1591
|
## `eas project:info`
|
|
1590
1592
|
|
|
@@ -1598,7 +1600,7 @@ DESCRIPTION
|
|
|
1598
1600
|
information about the current project
|
|
1599
1601
|
```
|
|
1600
1602
|
|
|
1601
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1603
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1602
1604
|
|
|
1603
1605
|
## `eas project:init`
|
|
1604
1606
|
|
|
@@ -1621,7 +1623,7 @@ ALIASES
|
|
|
1621
1623
|
$ eas init
|
|
1622
1624
|
```
|
|
1623
1625
|
|
|
1624
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1626
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1625
1627
|
|
|
1626
1628
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1627
1629
|
|
|
@@ -1639,7 +1641,7 @@ ALIASES
|
|
|
1639
1641
|
$ eas onboarding
|
|
1640
1642
|
```
|
|
1641
1643
|
|
|
1642
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1644
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1643
1645
|
|
|
1644
1646
|
## `eas submit`
|
|
1645
1647
|
|
|
@@ -1674,7 +1676,7 @@ ALIASES
|
|
|
1674
1676
|
$ eas build:submit
|
|
1675
1677
|
```
|
|
1676
1678
|
|
|
1677
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1679
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1678
1680
|
|
|
1679
1681
|
## `eas update`
|
|
1680
1682
|
|
|
@@ -1716,7 +1718,7 @@ DESCRIPTION
|
|
|
1716
1718
|
publish an update group
|
|
1717
1719
|
```
|
|
1718
1720
|
|
|
1719
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1721
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1720
1722
|
|
|
1721
1723
|
## `eas update:configure`
|
|
1722
1724
|
|
|
@@ -1736,7 +1738,7 @@ DESCRIPTION
|
|
|
1736
1738
|
configure the project to support EAS Update
|
|
1737
1739
|
```
|
|
1738
1740
|
|
|
1739
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1741
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1740
1742
|
|
|
1741
1743
|
## `eas update:delete GROUPID`
|
|
1742
1744
|
|
|
@@ -1757,7 +1759,7 @@ DESCRIPTION
|
|
|
1757
1759
|
delete all the updates in an update group
|
|
1758
1760
|
```
|
|
1759
1761
|
|
|
1760
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1762
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1761
1763
|
|
|
1762
1764
|
## `eas update:edit [GROUPID]`
|
|
1763
1765
|
|
|
@@ -1781,7 +1783,7 @@ DESCRIPTION
|
|
|
1781
1783
|
edit all the updates in an update group
|
|
1782
1784
|
```
|
|
1783
1785
|
|
|
1784
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1786
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1785
1787
|
|
|
1786
1788
|
## `eas update:list`
|
|
1787
1789
|
|
|
@@ -1803,7 +1805,7 @@ DESCRIPTION
|
|
|
1803
1805
|
view the recent updates
|
|
1804
1806
|
```
|
|
1805
1807
|
|
|
1806
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1808
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1807
1809
|
|
|
1808
1810
|
## `eas update:republish`
|
|
1809
1811
|
|
|
@@ -1839,7 +1841,7 @@ DESCRIPTION
|
|
|
1839
1841
|
roll back to an existing update
|
|
1840
1842
|
```
|
|
1841
1843
|
|
|
1842
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1844
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1843
1845
|
|
|
1844
1846
|
## `eas update:revert-update-rollout`
|
|
1845
1847
|
|
|
@@ -1866,7 +1868,7 @@ DESCRIPTION
|
|
|
1866
1868
|
revert a rollout update for a project
|
|
1867
1869
|
```
|
|
1868
1870
|
|
|
1869
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1871
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1870
1872
|
|
|
1871
1873
|
## `eas update:roll-back-to-embedded`
|
|
1872
1874
|
|
|
@@ -1894,7 +1896,7 @@ DESCRIPTION
|
|
|
1894
1896
|
roll back to the embedded update
|
|
1895
1897
|
```
|
|
1896
1898
|
|
|
1897
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1899
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1898
1900
|
|
|
1899
1901
|
## `eas update:rollback`
|
|
1900
1902
|
|
|
@@ -1914,7 +1916,7 @@ DESCRIPTION
|
|
|
1914
1916
|
roll back to an embedded update or an existing update
|
|
1915
1917
|
```
|
|
1916
1918
|
|
|
1917
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1919
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1918
1920
|
|
|
1919
1921
|
## `eas update:view GROUPID`
|
|
1920
1922
|
|
|
@@ -1934,7 +1936,7 @@ DESCRIPTION
|
|
|
1934
1936
|
update group details
|
|
1935
1937
|
```
|
|
1936
1938
|
|
|
1937
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1939
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1938
1940
|
|
|
1939
1941
|
## `eas upload`
|
|
1940
1942
|
|
|
@@ -1955,7 +1957,7 @@ DESCRIPTION
|
|
|
1955
1957
|
upload a local build and generate a sharable link
|
|
1956
1958
|
```
|
|
1957
1959
|
|
|
1958
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1960
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/upload.ts)_
|
|
1959
1961
|
|
|
1960
1962
|
## `eas webhook:create`
|
|
1961
1963
|
|
|
@@ -1976,7 +1978,7 @@ DESCRIPTION
|
|
|
1976
1978
|
create a webhook
|
|
1977
1979
|
```
|
|
1978
1980
|
|
|
1979
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1981
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1980
1982
|
|
|
1981
1983
|
## `eas webhook:delete [ID]`
|
|
1982
1984
|
|
|
@@ -1996,7 +1998,7 @@ DESCRIPTION
|
|
|
1996
1998
|
delete a webhook
|
|
1997
1999
|
```
|
|
1998
2000
|
|
|
1999
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2001
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2000
2002
|
|
|
2001
2003
|
## `eas webhook:list`
|
|
2002
2004
|
|
|
@@ -2014,7 +2016,7 @@ DESCRIPTION
|
|
|
2014
2016
|
list webhooks
|
|
2015
2017
|
```
|
|
2016
2018
|
|
|
2017
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2019
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2018
2020
|
|
|
2019
2021
|
## `eas webhook:update`
|
|
2020
2022
|
|
|
@@ -2036,7 +2038,7 @@ DESCRIPTION
|
|
|
2036
2038
|
update a webhook
|
|
2037
2039
|
```
|
|
2038
2040
|
|
|
2039
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2041
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2040
2042
|
|
|
2041
2043
|
## `eas webhook:view ID`
|
|
2042
2044
|
|
|
@@ -2053,7 +2055,7 @@ DESCRIPTION
|
|
|
2053
2055
|
view a webhook
|
|
2054
2056
|
```
|
|
2055
2057
|
|
|
2056
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2058
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2057
2059
|
|
|
2058
2060
|
## `eas whoami`
|
|
2059
2061
|
|
|
@@ -2135,7 +2137,7 @@ DESCRIPTION
|
|
|
2135
2137
|
to cancel.
|
|
2136
2138
|
```
|
|
2137
2139
|
|
|
2138
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2140
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2139
2141
|
|
|
2140
2142
|
## `eas workflow:create [NAME]`
|
|
2141
2143
|
|
|
@@ -2155,7 +2157,31 @@ DESCRIPTION
|
|
|
2155
2157
|
create a new workflow configuration YAML file
|
|
2156
2158
|
```
|
|
2157
2159
|
|
|
2158
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2160
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2161
|
+
|
|
2162
|
+
## `eas workflow:logs [ID]`
|
|
2163
|
+
|
|
2164
|
+
view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID. If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2165
|
+
|
|
2166
|
+
```
|
|
2167
|
+
USAGE
|
|
2168
|
+
$ eas workflow:logs [ID] [--json] [--non-interactive] [--all-steps]
|
|
2169
|
+
|
|
2170
|
+
ARGUMENTS
|
|
2171
|
+
ID ID of the workflow run or workflow job to view logs for
|
|
2172
|
+
|
|
2173
|
+
FLAGS
|
|
2174
|
+
--all-steps Print all logs, rather than prompting for a specific step. This will be automatically set when in
|
|
2175
|
+
non-interactive mode.
|
|
2176
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2177
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2178
|
+
|
|
2179
|
+
DESCRIPTION
|
|
2180
|
+
view logs for a workflow run, selecting a job and step to view. You can pass in either a workflow run ID or a job ID.
|
|
2181
|
+
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2182
|
+
```
|
|
2183
|
+
|
|
2184
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2159
2185
|
|
|
2160
2186
|
## `eas workflow:run [FILE]`
|
|
2161
2187
|
|
|
@@ -2163,26 +2189,31 @@ run an EAS workflow
|
|
|
2163
2189
|
|
|
2164
2190
|
```
|
|
2165
2191
|
USAGE
|
|
2166
|
-
$ eas workflow:run [FILE] [--non-interactive] [--wait] [--json]
|
|
2192
|
+
$ eas workflow:run [FILE] [--non-interactive] [--wait] [-F <value>] [--json]
|
|
2167
2193
|
|
|
2168
2194
|
ARGUMENTS
|
|
2169
2195
|
FILE Path to the workflow file to run
|
|
2170
2196
|
|
|
2171
2197
|
FLAGS
|
|
2172
|
-
|
|
2173
|
-
--non-
|
|
2174
|
-
--
|
|
2198
|
+
-F, --input=<value>... Set workflow inputs
|
|
2199
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2200
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2201
|
+
--[no-]wait Wait for workflow run to complete
|
|
2175
2202
|
|
|
2176
2203
|
DESCRIPTION
|
|
2177
2204
|
run an EAS workflow
|
|
2178
2205
|
|
|
2179
2206
|
FLAG DESCRIPTIONS
|
|
2207
|
+
-F, --input=<value>... Set workflow inputs
|
|
2208
|
+
|
|
2209
|
+
Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.
|
|
2210
|
+
|
|
2180
2211
|
--[no-]wait Wait for workflow run to complete
|
|
2181
2212
|
|
|
2182
2213
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2183
2214
|
```
|
|
2184
2215
|
|
|
2185
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2216
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2186
2217
|
|
|
2187
2218
|
## `eas workflow:runs`
|
|
2188
2219
|
|
|
@@ -2207,7 +2238,7 @@ DESCRIPTION
|
|
|
2207
2238
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2208
2239
|
```
|
|
2209
2240
|
|
|
2210
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2241
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2211
2242
|
|
|
2212
2243
|
## `eas workflow:validate PATH`
|
|
2213
2244
|
|
|
@@ -2227,5 +2258,27 @@ DESCRIPTION
|
|
|
2227
2258
|
validate a workflow configuration yaml file
|
|
2228
2259
|
```
|
|
2229
2260
|
|
|
2230
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2261
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2262
|
+
|
|
2263
|
+
## `eas workflow:view [ID]`
|
|
2264
|
+
|
|
2265
|
+
view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent workflow runs for the current project.
|
|
2266
|
+
|
|
2267
|
+
```
|
|
2268
|
+
USAGE
|
|
2269
|
+
$ eas workflow:view [ID] [--json] [--non-interactive]
|
|
2270
|
+
|
|
2271
|
+
ARGUMENTS
|
|
2272
|
+
ID ID of the workflow run to view
|
|
2273
|
+
|
|
2274
|
+
FLAGS
|
|
2275
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2276
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2277
|
+
|
|
2278
|
+
DESCRIPTION
|
|
2279
|
+
view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent
|
|
2280
|
+
workflow runs for the current project.
|
|
2281
|
+
```
|
|
2282
|
+
|
|
2283
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.16.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2231
2284
|
<!-- commandsstop -->
|