eas-cli 16.15.0 → 16.17.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 +221 -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/alias/delete.d.ts +21 -0
- package/build/commands/deploy/alias/delete.js +98 -0
- package/build/commands/deploy/alias/index.d.ts +21 -0
- package/build/commands/deploy/{alias.js → alias/index.js} +8 -8
- package/build/commands/deploy/{alias.d.ts → delete.d.ts} +4 -4
- package/build/commands/deploy/delete.js +84 -0
- 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/IosCredentialsProvider.js +1 -1
- 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 +308 -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 +0 -3
- package/build/worker/assets.js +3 -3
- package/build/worker/deployment.d.ts +23 -1
- package/build/worker/deployment.js +27 -1
- package/build/worker/mutations.d.ts +12 -1
- package/build/worker/mutations.js +33 -0
- package/build/worker/queries.d.ts +8 -1
- package/build/worker/queries.js +42 -0
- package/build/worker/upload.js +4 -8
- package/build/worker/utils/multipart.d.ts +5 -4
- package/build/worker/utils/multipart.js +44 -9
- package/oclif.manifest.json +196 -32
- package/package.json +2 -2
- package/build/commandUtils/workflows.d.ts +0 -20
- package/build/commandUtils/workflows.js +0 -21
package/README.md
CHANGED
|
@@ -92,6 +92,8 @@ eas --help COMMAND
|
|
|
92
92
|
* [`eas credentials:configure-build`](#eas-credentialsconfigure-build)
|
|
93
93
|
* [`eas deploy [2m[options][22m`](#eas-deploy-2moptions22m)
|
|
94
94
|
* [`eas deploy:alias`](#eas-deployalias)
|
|
95
|
+
* [`eas deploy:alias:delete [ALIAS_NAME]`](#eas-deployaliasdelete-alias_name)
|
|
96
|
+
* [`eas deploy:delete [DEPLOYMENT_ID]`](#eas-deploydelete-deployment_id)
|
|
95
97
|
* [`eas deploy:promote`](#eas-deploypromote)
|
|
96
98
|
* [`eas device:create`](#eas-devicecreate)
|
|
97
99
|
* [`eas device:delete`](#eas-devicedelete)
|
|
@@ -141,12 +143,16 @@ eas --help COMMAND
|
|
|
141
143
|
* [`eas webhook:view ID`](#eas-webhookview-id)
|
|
142
144
|
* [`eas whoami`](#eas-whoami)
|
|
143
145
|
* [`eas worker:alias`](#eas-workeralias)
|
|
146
|
+
* [`eas worker:alias:delete [ALIAS_NAME]`](#eas-workeraliasdelete-alias_name)
|
|
147
|
+
* [`eas worker:delete [DEPLOYMENT_ID]`](#eas-workerdelete-deployment_id)
|
|
144
148
|
* [`eas deploy [2m[options][22m`](#eas-deploy-2moptions22m-1)
|
|
145
149
|
* [`eas workflow:cancel`](#eas-workflowcancel)
|
|
146
150
|
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
151
|
+
* [`eas workflow:logs [ID]`](#eas-workflowlogs-id)
|
|
147
152
|
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
148
153
|
* [`eas workflow:runs`](#eas-workflowruns)
|
|
149
154
|
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
155
|
+
* [`eas workflow:view [ID]`](#eas-workflowview-id)
|
|
150
156
|
|
|
151
157
|
## `eas account:login`
|
|
152
158
|
|
|
@@ -166,7 +172,7 @@ ALIASES
|
|
|
166
172
|
$ eas login
|
|
167
173
|
```
|
|
168
174
|
|
|
169
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
175
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
170
176
|
|
|
171
177
|
## `eas account:logout`
|
|
172
178
|
|
|
@@ -183,7 +189,7 @@ ALIASES
|
|
|
183
189
|
$ eas logout
|
|
184
190
|
```
|
|
185
191
|
|
|
186
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
192
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
187
193
|
|
|
188
194
|
## `eas account:view`
|
|
189
195
|
|
|
@@ -200,7 +206,7 @@ ALIASES
|
|
|
200
206
|
$ eas whoami
|
|
201
207
|
```
|
|
202
208
|
|
|
203
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
209
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
204
210
|
|
|
205
211
|
## `eas analytics [STATUS]`
|
|
206
212
|
|
|
@@ -214,7 +220,7 @@ DESCRIPTION
|
|
|
214
220
|
display or change analytics settings
|
|
215
221
|
```
|
|
216
222
|
|
|
217
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
223
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
218
224
|
|
|
219
225
|
## `eas autocomplete [SHELL]`
|
|
220
226
|
|
|
@@ -266,7 +272,7 @@ DESCRIPTION
|
|
|
266
272
|
create a branch
|
|
267
273
|
```
|
|
268
274
|
|
|
269
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
275
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
270
276
|
|
|
271
277
|
## `eas branch:delete [NAME]`
|
|
272
278
|
|
|
@@ -287,7 +293,7 @@ DESCRIPTION
|
|
|
287
293
|
delete a branch
|
|
288
294
|
```
|
|
289
295
|
|
|
290
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
296
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
291
297
|
|
|
292
298
|
## `eas branch:list`
|
|
293
299
|
|
|
@@ -307,7 +313,7 @@ DESCRIPTION
|
|
|
307
313
|
list all branches
|
|
308
314
|
```
|
|
309
315
|
|
|
310
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
316
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
311
317
|
|
|
312
318
|
## `eas branch:rename`
|
|
313
319
|
|
|
@@ -327,7 +333,7 @@ DESCRIPTION
|
|
|
327
333
|
rename a branch
|
|
328
334
|
```
|
|
329
335
|
|
|
330
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
336
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
331
337
|
|
|
332
338
|
## `eas branch:view [NAME]`
|
|
333
339
|
|
|
@@ -350,7 +356,7 @@ DESCRIPTION
|
|
|
350
356
|
view a branch
|
|
351
357
|
```
|
|
352
358
|
|
|
353
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
359
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
354
360
|
|
|
355
361
|
## `eas build`
|
|
356
362
|
|
|
@@ -391,7 +397,7 @@ DESCRIPTION
|
|
|
391
397
|
start a build
|
|
392
398
|
```
|
|
393
399
|
|
|
394
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
400
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
395
401
|
|
|
396
402
|
## `eas build:cancel [BUILD_ID]`
|
|
397
403
|
|
|
@@ -410,7 +416,7 @@ DESCRIPTION
|
|
|
410
416
|
cancel a build
|
|
411
417
|
```
|
|
412
418
|
|
|
413
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
419
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
414
420
|
|
|
415
421
|
## `eas build:configure`
|
|
416
422
|
|
|
@@ -427,7 +433,7 @@ DESCRIPTION
|
|
|
427
433
|
configure the project to support EAS Build
|
|
428
434
|
```
|
|
429
435
|
|
|
430
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
436
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
431
437
|
|
|
432
438
|
## `eas build:delete [BUILD_ID]`
|
|
433
439
|
|
|
@@ -446,7 +452,7 @@ DESCRIPTION
|
|
|
446
452
|
delete a build
|
|
447
453
|
```
|
|
448
454
|
|
|
449
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
455
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
450
456
|
|
|
451
457
|
## `eas build:dev`
|
|
452
458
|
|
|
@@ -466,7 +472,7 @@ DESCRIPTION
|
|
|
466
472
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
467
473
|
```
|
|
468
474
|
|
|
469
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
475
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
470
476
|
|
|
471
477
|
## `eas build:download`
|
|
472
478
|
|
|
@@ -487,7 +493,7 @@ DESCRIPTION
|
|
|
487
493
|
download simulator/emulator builds for a given fingerprint hash
|
|
488
494
|
```
|
|
489
495
|
|
|
490
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
496
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/download.ts)_
|
|
491
497
|
|
|
492
498
|
## `eas build:inspect`
|
|
493
499
|
|
|
@@ -522,7 +528,7 @@ DESCRIPTION
|
|
|
522
528
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
523
529
|
```
|
|
524
530
|
|
|
525
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
531
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
526
532
|
|
|
527
533
|
## `eas build:list`
|
|
528
534
|
|
|
@@ -574,7 +580,7 @@ DESCRIPTION
|
|
|
574
580
|
list all builds for your project
|
|
575
581
|
```
|
|
576
582
|
|
|
577
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
583
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
578
584
|
|
|
579
585
|
## `eas build:resign`
|
|
580
586
|
|
|
@@ -603,7 +609,7 @@ DESCRIPTION
|
|
|
603
609
|
re-sign a build archive
|
|
604
610
|
```
|
|
605
611
|
|
|
606
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
612
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
607
613
|
|
|
608
614
|
## `eas build:run`
|
|
609
615
|
|
|
@@ -629,7 +635,7 @@ DESCRIPTION
|
|
|
629
635
|
run simulator/emulator builds from eas-cli
|
|
630
636
|
```
|
|
631
637
|
|
|
632
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
638
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
633
639
|
|
|
634
640
|
## `eas build:submit`
|
|
635
641
|
|
|
@@ -683,7 +689,7 @@ DESCRIPTION
|
|
|
683
689
|
get the latest version from EAS servers
|
|
684
690
|
```
|
|
685
691
|
|
|
686
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
692
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
687
693
|
|
|
688
694
|
## `eas build:version:set`
|
|
689
695
|
|
|
@@ -702,7 +708,7 @@ DESCRIPTION
|
|
|
702
708
|
update version of an app
|
|
703
709
|
```
|
|
704
710
|
|
|
705
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
711
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
706
712
|
|
|
707
713
|
## `eas build:version:sync`
|
|
708
714
|
|
|
@@ -721,7 +727,7 @@ DESCRIPTION
|
|
|
721
727
|
update a version in native code with a value stored on EAS servers
|
|
722
728
|
```
|
|
723
729
|
|
|
724
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
730
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
725
731
|
|
|
726
732
|
## `eas build:view [BUILD_ID]`
|
|
727
733
|
|
|
@@ -738,7 +744,7 @@ DESCRIPTION
|
|
|
738
744
|
view a build for your project
|
|
739
745
|
```
|
|
740
746
|
|
|
741
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
747
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
742
748
|
|
|
743
749
|
## `eas channel:create [NAME]`
|
|
744
750
|
|
|
@@ -759,7 +765,7 @@ DESCRIPTION
|
|
|
759
765
|
create a channel
|
|
760
766
|
```
|
|
761
767
|
|
|
762
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
768
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
763
769
|
|
|
764
770
|
## `eas channel:edit [NAME]`
|
|
765
771
|
|
|
@@ -781,7 +787,7 @@ DESCRIPTION
|
|
|
781
787
|
point a channel at a new branch
|
|
782
788
|
```
|
|
783
789
|
|
|
784
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
790
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
785
791
|
|
|
786
792
|
## `eas channel:list`
|
|
787
793
|
|
|
@@ -801,7 +807,7 @@ DESCRIPTION
|
|
|
801
807
|
list all channels
|
|
802
808
|
```
|
|
803
809
|
|
|
804
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
810
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
805
811
|
|
|
806
812
|
## `eas channel:pause [NAME]`
|
|
807
813
|
|
|
@@ -823,7 +829,7 @@ DESCRIPTION
|
|
|
823
829
|
pause a channel to stop it from sending updates
|
|
824
830
|
```
|
|
825
831
|
|
|
826
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
832
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
827
833
|
|
|
828
834
|
## `eas channel:resume [NAME]`
|
|
829
835
|
|
|
@@ -845,7 +851,7 @@ DESCRIPTION
|
|
|
845
851
|
resume a channel to start sending updates
|
|
846
852
|
```
|
|
847
853
|
|
|
848
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
854
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
849
855
|
|
|
850
856
|
## `eas channel:rollout [CHANNEL]`
|
|
851
857
|
|
|
@@ -878,7 +884,7 @@ DESCRIPTION
|
|
|
878
884
|
Roll a new branch out on a channel incrementally.
|
|
879
885
|
```
|
|
880
886
|
|
|
881
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
887
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
882
888
|
|
|
883
889
|
## `eas channel:view [NAME]`
|
|
884
890
|
|
|
@@ -901,7 +907,7 @@ DESCRIPTION
|
|
|
901
907
|
view a channel
|
|
902
908
|
```
|
|
903
909
|
|
|
904
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
910
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
905
911
|
|
|
906
912
|
## `eas config`
|
|
907
913
|
|
|
@@ -922,7 +928,7 @@ DESCRIPTION
|
|
|
922
928
|
display project configuration (app.json + eas.json)
|
|
923
929
|
```
|
|
924
930
|
|
|
925
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
931
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/config.ts)_
|
|
926
932
|
|
|
927
933
|
## `eas credentials`
|
|
928
934
|
|
|
@@ -939,7 +945,7 @@ DESCRIPTION
|
|
|
939
945
|
manage credentials
|
|
940
946
|
```
|
|
941
947
|
|
|
942
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
948
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
943
949
|
|
|
944
950
|
## `eas credentials:configure-build`
|
|
945
951
|
|
|
@@ -957,7 +963,7 @@ DESCRIPTION
|
|
|
957
963
|
Set up credentials for building your project.
|
|
958
964
|
```
|
|
959
965
|
|
|
960
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
966
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
961
967
|
|
|
962
968
|
## `eas deploy [2m[options][22m`
|
|
963
969
|
|
|
@@ -985,7 +991,7 @@ ALIASES
|
|
|
985
991
|
$ eas worker:deploy
|
|
986
992
|
```
|
|
987
993
|
|
|
988
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
994
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
989
995
|
|
|
990
996
|
## `eas deploy:alias`
|
|
991
997
|
|
|
@@ -1010,7 +1016,49 @@ ALIASES
|
|
|
1010
1016
|
$ eas deploy:promote
|
|
1011
1017
|
```
|
|
1012
1018
|
|
|
1013
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1019
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1020
|
+
|
|
1021
|
+
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1022
|
+
|
|
1023
|
+
Delete deployment aliases.
|
|
1024
|
+
|
|
1025
|
+
```
|
|
1026
|
+
USAGE
|
|
1027
|
+
$ eas deploy:alias:delete [ALIAS_NAME] [--json --non-interactive]
|
|
1028
|
+
|
|
1029
|
+
FLAGS
|
|
1030
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1031
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1032
|
+
|
|
1033
|
+
DESCRIPTION
|
|
1034
|
+
Delete deployment aliases.
|
|
1035
|
+
|
|
1036
|
+
ALIASES
|
|
1037
|
+
$ eas worker:alias:delete
|
|
1038
|
+
```
|
|
1039
|
+
|
|
1040
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1041
|
+
|
|
1042
|
+
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1043
|
+
|
|
1044
|
+
Delete a deployment.
|
|
1045
|
+
|
|
1046
|
+
```
|
|
1047
|
+
USAGE
|
|
1048
|
+
$ eas deploy:delete [DEPLOYMENT_ID] [--json --non-interactive]
|
|
1049
|
+
|
|
1050
|
+
FLAGS
|
|
1051
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1052
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1053
|
+
|
|
1054
|
+
DESCRIPTION
|
|
1055
|
+
Delete a deployment.
|
|
1056
|
+
|
|
1057
|
+
ALIASES
|
|
1058
|
+
$ eas worker:delete
|
|
1059
|
+
```
|
|
1060
|
+
|
|
1061
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1014
1062
|
|
|
1015
1063
|
## `eas deploy:promote`
|
|
1016
1064
|
|
|
@@ -1047,7 +1095,7 @@ DESCRIPTION
|
|
|
1047
1095
|
register new Apple Devices to use for internal distribution
|
|
1048
1096
|
```
|
|
1049
1097
|
|
|
1050
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1098
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
1051
1099
|
|
|
1052
1100
|
## `eas device:delete`
|
|
1053
1101
|
|
|
@@ -1067,7 +1115,7 @@ DESCRIPTION
|
|
|
1067
1115
|
remove a registered device from your account
|
|
1068
1116
|
```
|
|
1069
1117
|
|
|
1070
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1118
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1071
1119
|
|
|
1072
1120
|
## `eas device:list`
|
|
1073
1121
|
|
|
@@ -1088,7 +1136,7 @@ DESCRIPTION
|
|
|
1088
1136
|
list all registered devices for your account
|
|
1089
1137
|
```
|
|
1090
1138
|
|
|
1091
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1139
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1092
1140
|
|
|
1093
1141
|
## `eas device:rename`
|
|
1094
1142
|
|
|
@@ -1109,7 +1157,7 @@ DESCRIPTION
|
|
|
1109
1157
|
rename a registered device
|
|
1110
1158
|
```
|
|
1111
1159
|
|
|
1112
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1160
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1113
1161
|
|
|
1114
1162
|
## `eas device:view [UDID]`
|
|
1115
1163
|
|
|
@@ -1123,7 +1171,7 @@ DESCRIPTION
|
|
|
1123
1171
|
view a device for your project
|
|
1124
1172
|
```
|
|
1125
1173
|
|
|
1126
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1174
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1127
1175
|
|
|
1128
1176
|
## `eas diagnostics`
|
|
1129
1177
|
|
|
@@ -1137,7 +1185,7 @@ DESCRIPTION
|
|
|
1137
1185
|
display environment info
|
|
1138
1186
|
```
|
|
1139
1187
|
|
|
1140
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1188
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1141
1189
|
|
|
1142
1190
|
## `eas env:create [ENVIRONMENT]`
|
|
1143
1191
|
|
|
@@ -1166,7 +1214,7 @@ DESCRIPTION
|
|
|
1166
1214
|
create an environment variable for the current project or account
|
|
1167
1215
|
```
|
|
1168
1216
|
|
|
1169
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1217
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1170
1218
|
|
|
1171
1219
|
## `eas env:delete [ENVIRONMENT]`
|
|
1172
1220
|
|
|
@@ -1190,7 +1238,7 @@ DESCRIPTION
|
|
|
1190
1238
|
delete an environment variable for the current project or account
|
|
1191
1239
|
```
|
|
1192
1240
|
|
|
1193
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1241
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1194
1242
|
|
|
1195
1243
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1196
1244
|
|
|
@@ -1211,7 +1259,7 @@ DESCRIPTION
|
|
|
1211
1259
|
execute a command with environment variables from the selected environment
|
|
1212
1260
|
```
|
|
1213
1261
|
|
|
1214
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1262
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1215
1263
|
|
|
1216
1264
|
## `eas env:get [ENVIRONMENT]`
|
|
1217
1265
|
|
|
@@ -1236,7 +1284,7 @@ DESCRIPTION
|
|
|
1236
1284
|
view an environment variable for the current project or account
|
|
1237
1285
|
```
|
|
1238
1286
|
|
|
1239
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1287
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1240
1288
|
|
|
1241
1289
|
## `eas env:list [ENVIRONMENT]`
|
|
1242
1290
|
|
|
@@ -1261,7 +1309,7 @@ DESCRIPTION
|
|
|
1261
1309
|
list environment variables for the current project or account
|
|
1262
1310
|
```
|
|
1263
1311
|
|
|
1264
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1312
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1265
1313
|
|
|
1266
1314
|
## `eas env:pull [ENVIRONMENT]`
|
|
1267
1315
|
|
|
@@ -1284,7 +1332,7 @@ DESCRIPTION
|
|
|
1284
1332
|
pull environment variables for the selected environment to .env file
|
|
1285
1333
|
```
|
|
1286
1334
|
|
|
1287
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1335
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1288
1336
|
|
|
1289
1337
|
## `eas env:push [ENVIRONMENT]`
|
|
1290
1338
|
|
|
@@ -1305,7 +1353,7 @@ DESCRIPTION
|
|
|
1305
1353
|
push environment variables from .env file to the selected environment
|
|
1306
1354
|
```
|
|
1307
1355
|
|
|
1308
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1356
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1309
1357
|
|
|
1310
1358
|
## `eas env:update [ENVIRONMENT]`
|
|
1311
1359
|
|
|
@@ -1336,7 +1384,7 @@ DESCRIPTION
|
|
|
1336
1384
|
update an environment variable on the current project or account
|
|
1337
1385
|
```
|
|
1338
1386
|
|
|
1339
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1387
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1340
1388
|
|
|
1341
1389
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1342
1390
|
|
|
@@ -1381,7 +1429,7 @@ EXAMPLES
|
|
|
1381
1429
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1382
1430
|
```
|
|
1383
1431
|
|
|
1384
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1432
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1385
1433
|
|
|
1386
1434
|
## `eas fingerprint:generate`
|
|
1387
1435
|
|
|
@@ -1412,7 +1460,7 @@ EXAMPLES
|
|
|
1412
1460
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1413
1461
|
```
|
|
1414
1462
|
|
|
1415
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1463
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1416
1464
|
|
|
1417
1465
|
## `eas help [COMMAND]`
|
|
1418
1466
|
|
|
@@ -1520,7 +1568,7 @@ DESCRIPTION
|
|
|
1520
1568
|
validate the local store configuration
|
|
1521
1569
|
```
|
|
1522
1570
|
|
|
1523
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1571
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1524
1572
|
|
|
1525
1573
|
## `eas metadata:pull`
|
|
1526
1574
|
|
|
@@ -1537,7 +1585,7 @@ DESCRIPTION
|
|
|
1537
1585
|
generate the local store configuration from the app stores
|
|
1538
1586
|
```
|
|
1539
1587
|
|
|
1540
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1588
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1541
1589
|
|
|
1542
1590
|
## `eas metadata:push`
|
|
1543
1591
|
|
|
@@ -1554,7 +1602,7 @@ DESCRIPTION
|
|
|
1554
1602
|
sync the local store configuration to the app stores
|
|
1555
1603
|
```
|
|
1556
1604
|
|
|
1557
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1605
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1558
1606
|
|
|
1559
1607
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1560
1608
|
|
|
@@ -1584,7 +1632,7 @@ DESCRIPTION
|
|
|
1584
1632
|
open the project page in a web browser
|
|
1585
1633
|
```
|
|
1586
1634
|
|
|
1587
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1635
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/open.ts)_
|
|
1588
1636
|
|
|
1589
1637
|
## `eas project:info`
|
|
1590
1638
|
|
|
@@ -1598,7 +1646,7 @@ DESCRIPTION
|
|
|
1598
1646
|
information about the current project
|
|
1599
1647
|
```
|
|
1600
1648
|
|
|
1601
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1649
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1602
1650
|
|
|
1603
1651
|
## `eas project:init`
|
|
1604
1652
|
|
|
@@ -1621,7 +1669,7 @@ ALIASES
|
|
|
1621
1669
|
$ eas init
|
|
1622
1670
|
```
|
|
1623
1671
|
|
|
1624
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1672
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1625
1673
|
|
|
1626
1674
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1627
1675
|
|
|
@@ -1639,7 +1687,7 @@ ALIASES
|
|
|
1639
1687
|
$ eas onboarding
|
|
1640
1688
|
```
|
|
1641
1689
|
|
|
1642
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1690
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1643
1691
|
|
|
1644
1692
|
## `eas submit`
|
|
1645
1693
|
|
|
@@ -1674,7 +1722,7 @@ ALIASES
|
|
|
1674
1722
|
$ eas build:submit
|
|
1675
1723
|
```
|
|
1676
1724
|
|
|
1677
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1725
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1678
1726
|
|
|
1679
1727
|
## `eas update`
|
|
1680
1728
|
|
|
@@ -1716,7 +1764,7 @@ DESCRIPTION
|
|
|
1716
1764
|
publish an update group
|
|
1717
1765
|
```
|
|
1718
1766
|
|
|
1719
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1767
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1720
1768
|
|
|
1721
1769
|
## `eas update:configure`
|
|
1722
1770
|
|
|
@@ -1736,7 +1784,7 @@ DESCRIPTION
|
|
|
1736
1784
|
configure the project to support EAS Update
|
|
1737
1785
|
```
|
|
1738
1786
|
|
|
1739
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1787
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1740
1788
|
|
|
1741
1789
|
## `eas update:delete GROUPID`
|
|
1742
1790
|
|
|
@@ -1757,7 +1805,7 @@ DESCRIPTION
|
|
|
1757
1805
|
delete all the updates in an update group
|
|
1758
1806
|
```
|
|
1759
1807
|
|
|
1760
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1808
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1761
1809
|
|
|
1762
1810
|
## `eas update:edit [GROUPID]`
|
|
1763
1811
|
|
|
@@ -1781,7 +1829,7 @@ DESCRIPTION
|
|
|
1781
1829
|
edit all the updates in an update group
|
|
1782
1830
|
```
|
|
1783
1831
|
|
|
1784
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1832
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1785
1833
|
|
|
1786
1834
|
## `eas update:list`
|
|
1787
1835
|
|
|
@@ -1803,7 +1851,7 @@ DESCRIPTION
|
|
|
1803
1851
|
view the recent updates
|
|
1804
1852
|
```
|
|
1805
1853
|
|
|
1806
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1854
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1807
1855
|
|
|
1808
1856
|
## `eas update:republish`
|
|
1809
1857
|
|
|
@@ -1839,7 +1887,7 @@ DESCRIPTION
|
|
|
1839
1887
|
roll back to an existing update
|
|
1840
1888
|
```
|
|
1841
1889
|
|
|
1842
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1890
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1843
1891
|
|
|
1844
1892
|
## `eas update:revert-update-rollout`
|
|
1845
1893
|
|
|
@@ -1866,7 +1914,7 @@ DESCRIPTION
|
|
|
1866
1914
|
revert a rollout update for a project
|
|
1867
1915
|
```
|
|
1868
1916
|
|
|
1869
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1917
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1870
1918
|
|
|
1871
1919
|
## `eas update:roll-back-to-embedded`
|
|
1872
1920
|
|
|
@@ -1894,7 +1942,7 @@ DESCRIPTION
|
|
|
1894
1942
|
roll back to the embedded update
|
|
1895
1943
|
```
|
|
1896
1944
|
|
|
1897
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1945
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1898
1946
|
|
|
1899
1947
|
## `eas update:rollback`
|
|
1900
1948
|
|
|
@@ -1914,7 +1962,7 @@ DESCRIPTION
|
|
|
1914
1962
|
roll back to an embedded update or an existing update
|
|
1915
1963
|
```
|
|
1916
1964
|
|
|
1917
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1965
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1918
1966
|
|
|
1919
1967
|
## `eas update:view GROUPID`
|
|
1920
1968
|
|
|
@@ -1934,7 +1982,7 @@ DESCRIPTION
|
|
|
1934
1982
|
update group details
|
|
1935
1983
|
```
|
|
1936
1984
|
|
|
1937
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1985
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1938
1986
|
|
|
1939
1987
|
## `eas upload`
|
|
1940
1988
|
|
|
@@ -1955,7 +2003,7 @@ DESCRIPTION
|
|
|
1955
2003
|
upload a local build and generate a sharable link
|
|
1956
2004
|
```
|
|
1957
2005
|
|
|
1958
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2006
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/upload.ts)_
|
|
1959
2007
|
|
|
1960
2008
|
## `eas webhook:create`
|
|
1961
2009
|
|
|
@@ -1976,7 +2024,7 @@ DESCRIPTION
|
|
|
1976
2024
|
create a webhook
|
|
1977
2025
|
```
|
|
1978
2026
|
|
|
1979
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2027
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1980
2028
|
|
|
1981
2029
|
## `eas webhook:delete [ID]`
|
|
1982
2030
|
|
|
@@ -1996,7 +2044,7 @@ DESCRIPTION
|
|
|
1996
2044
|
delete a webhook
|
|
1997
2045
|
```
|
|
1998
2046
|
|
|
1999
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2047
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2000
2048
|
|
|
2001
2049
|
## `eas webhook:list`
|
|
2002
2050
|
|
|
@@ -2014,7 +2062,7 @@ DESCRIPTION
|
|
|
2014
2062
|
list webhooks
|
|
2015
2063
|
```
|
|
2016
2064
|
|
|
2017
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2065
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2018
2066
|
|
|
2019
2067
|
## `eas webhook:update`
|
|
2020
2068
|
|
|
@@ -2036,7 +2084,7 @@ DESCRIPTION
|
|
|
2036
2084
|
update a webhook
|
|
2037
2085
|
```
|
|
2038
2086
|
|
|
2039
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2087
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2040
2088
|
|
|
2041
2089
|
## `eas webhook:view ID`
|
|
2042
2090
|
|
|
@@ -2053,7 +2101,7 @@ DESCRIPTION
|
|
|
2053
2101
|
view a webhook
|
|
2054
2102
|
```
|
|
2055
2103
|
|
|
2056
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2104
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2057
2105
|
|
|
2058
2106
|
## `eas whoami`
|
|
2059
2107
|
|
|
@@ -2093,6 +2141,44 @@ ALIASES
|
|
|
2093
2141
|
$ eas deploy:promote
|
|
2094
2142
|
```
|
|
2095
2143
|
|
|
2144
|
+
## `eas worker:alias:delete [ALIAS_NAME]`
|
|
2145
|
+
|
|
2146
|
+
Delete deployment aliases.
|
|
2147
|
+
|
|
2148
|
+
```
|
|
2149
|
+
USAGE
|
|
2150
|
+
$ eas worker:alias:delete [ALIAS_NAME] [--json --non-interactive]
|
|
2151
|
+
|
|
2152
|
+
FLAGS
|
|
2153
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2154
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2155
|
+
|
|
2156
|
+
DESCRIPTION
|
|
2157
|
+
Delete deployment aliases.
|
|
2158
|
+
|
|
2159
|
+
ALIASES
|
|
2160
|
+
$ eas worker:alias:delete
|
|
2161
|
+
```
|
|
2162
|
+
|
|
2163
|
+
## `eas worker:delete [DEPLOYMENT_ID]`
|
|
2164
|
+
|
|
2165
|
+
Delete a deployment.
|
|
2166
|
+
|
|
2167
|
+
```
|
|
2168
|
+
USAGE
|
|
2169
|
+
$ eas worker:delete [DEPLOYMENT_ID] [--json --non-interactive]
|
|
2170
|
+
|
|
2171
|
+
FLAGS
|
|
2172
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2173
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2174
|
+
|
|
2175
|
+
DESCRIPTION
|
|
2176
|
+
Delete a deployment.
|
|
2177
|
+
|
|
2178
|
+
ALIASES
|
|
2179
|
+
$ eas worker:delete
|
|
2180
|
+
```
|
|
2181
|
+
|
|
2096
2182
|
## `eas deploy [2m[options][22m`
|
|
2097
2183
|
|
|
2098
2184
|
deploy your Expo Router web build and API Routes
|
|
@@ -2135,7 +2221,7 @@ DESCRIPTION
|
|
|
2135
2221
|
to cancel.
|
|
2136
2222
|
```
|
|
2137
2223
|
|
|
2138
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2224
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2139
2225
|
|
|
2140
2226
|
## `eas workflow:create [NAME]`
|
|
2141
2227
|
|
|
@@ -2155,7 +2241,31 @@ DESCRIPTION
|
|
|
2155
2241
|
create a new workflow configuration YAML file
|
|
2156
2242
|
```
|
|
2157
2243
|
|
|
2158
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2244
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2245
|
+
|
|
2246
|
+
## `eas workflow:logs [ID]`
|
|
2247
|
+
|
|
2248
|
+
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.
|
|
2249
|
+
|
|
2250
|
+
```
|
|
2251
|
+
USAGE
|
|
2252
|
+
$ eas workflow:logs [ID] [--json] [--non-interactive] [--all-steps]
|
|
2253
|
+
|
|
2254
|
+
ARGUMENTS
|
|
2255
|
+
ID ID of the workflow run or workflow job to view logs for
|
|
2256
|
+
|
|
2257
|
+
FLAGS
|
|
2258
|
+
--all-steps Print all logs, rather than prompting for a specific step. This will be automatically set when in
|
|
2259
|
+
non-interactive mode.
|
|
2260
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2261
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2262
|
+
|
|
2263
|
+
DESCRIPTION
|
|
2264
|
+
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.
|
|
2265
|
+
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2266
|
+
```
|
|
2267
|
+
|
|
2268
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2159
2269
|
|
|
2160
2270
|
## `eas workflow:run [FILE]`
|
|
2161
2271
|
|
|
@@ -2163,26 +2273,31 @@ run an EAS workflow
|
|
|
2163
2273
|
|
|
2164
2274
|
```
|
|
2165
2275
|
USAGE
|
|
2166
|
-
$ eas workflow:run [FILE] [--non-interactive] [--wait] [--json]
|
|
2276
|
+
$ eas workflow:run [FILE] [--non-interactive] [--wait] [-F <value>] [--json]
|
|
2167
2277
|
|
|
2168
2278
|
ARGUMENTS
|
|
2169
2279
|
FILE Path to the workflow file to run
|
|
2170
2280
|
|
|
2171
2281
|
FLAGS
|
|
2172
|
-
|
|
2173
|
-
--non-
|
|
2174
|
-
--
|
|
2282
|
+
-F, --input=<value>... Set workflow inputs
|
|
2283
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2284
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2285
|
+
--[no-]wait Wait for workflow run to complete
|
|
2175
2286
|
|
|
2176
2287
|
DESCRIPTION
|
|
2177
2288
|
run an EAS workflow
|
|
2178
2289
|
|
|
2179
2290
|
FLAG DESCRIPTIONS
|
|
2291
|
+
-F, --input=<value>... Set workflow inputs
|
|
2292
|
+
|
|
2293
|
+
Add a parameter in key=value format. Use multiple instances of this flag to set multiple inputs.
|
|
2294
|
+
|
|
2180
2295
|
--[no-]wait Wait for workflow run to complete
|
|
2181
2296
|
|
|
2182
2297
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2183
2298
|
```
|
|
2184
2299
|
|
|
2185
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2300
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2186
2301
|
|
|
2187
2302
|
## `eas workflow:runs`
|
|
2188
2303
|
|
|
@@ -2207,7 +2322,7 @@ DESCRIPTION
|
|
|
2207
2322
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2208
2323
|
```
|
|
2209
2324
|
|
|
2210
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2325
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2211
2326
|
|
|
2212
2327
|
## `eas workflow:validate PATH`
|
|
2213
2328
|
|
|
@@ -2227,5 +2342,27 @@ DESCRIPTION
|
|
|
2227
2342
|
validate a workflow configuration yaml file
|
|
2228
2343
|
```
|
|
2229
2344
|
|
|
2230
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2345
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2346
|
+
|
|
2347
|
+
## `eas workflow:view [ID]`
|
|
2348
|
+
|
|
2349
|
+
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.
|
|
2350
|
+
|
|
2351
|
+
```
|
|
2352
|
+
USAGE
|
|
2353
|
+
$ eas workflow:view [ID] [--json] [--non-interactive]
|
|
2354
|
+
|
|
2355
|
+
ARGUMENTS
|
|
2356
|
+
ID ID of the workflow run to view
|
|
2357
|
+
|
|
2358
|
+
FLAGS
|
|
2359
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
2360
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2361
|
+
|
|
2362
|
+
DESCRIPTION
|
|
2363
|
+
view details for a workflow run, including jobs. If no run ID is provided, you will be prompted to select from recent
|
|
2364
|
+
workflow runs for the current project.
|
|
2365
|
+
```
|
|
2366
|
+
|
|
2367
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.17.0/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2231
2368
|
<!-- commandsstop -->
|