eas-cli 16.16.0 → 16.17.1
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 +166 -82
- 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/credentials/ios/IosCredentialsProvider.js +1 -1
- package/build/fetch.d.ts +1 -1
- package/build/fetch.js +4 -2
- package/build/graphql/generated.d.ts +106 -0
- package/build/utils/code-signing.d.ts +1 -0
- 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/oclif.manifest.json +112 -32
- package/package.json +5 -5
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,6 +143,8 @@ 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)
|
|
@@ -168,7 +172,7 @@ ALIASES
|
|
|
168
172
|
$ eas login
|
|
169
173
|
```
|
|
170
174
|
|
|
171
|
-
_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.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
172
176
|
|
|
173
177
|
## `eas account:logout`
|
|
174
178
|
|
|
@@ -185,7 +189,7 @@ ALIASES
|
|
|
185
189
|
$ eas logout
|
|
186
190
|
```
|
|
187
191
|
|
|
188
|
-
_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.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
189
193
|
|
|
190
194
|
## `eas account:view`
|
|
191
195
|
|
|
@@ -202,7 +206,7 @@ ALIASES
|
|
|
202
206
|
$ eas whoami
|
|
203
207
|
```
|
|
204
208
|
|
|
205
|
-
_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.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
206
210
|
|
|
207
211
|
## `eas analytics [STATUS]`
|
|
208
212
|
|
|
@@ -216,7 +220,7 @@ DESCRIPTION
|
|
|
216
220
|
display or change analytics settings
|
|
217
221
|
```
|
|
218
222
|
|
|
219
|
-
_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.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
220
224
|
|
|
221
225
|
## `eas autocomplete [SHELL]`
|
|
222
226
|
|
|
@@ -268,7 +272,7 @@ DESCRIPTION
|
|
|
268
272
|
create a branch
|
|
269
273
|
```
|
|
270
274
|
|
|
271
|
-
_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.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
272
276
|
|
|
273
277
|
## `eas branch:delete [NAME]`
|
|
274
278
|
|
|
@@ -289,7 +293,7 @@ DESCRIPTION
|
|
|
289
293
|
delete a branch
|
|
290
294
|
```
|
|
291
295
|
|
|
292
|
-
_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.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
293
297
|
|
|
294
298
|
## `eas branch:list`
|
|
295
299
|
|
|
@@ -309,7 +313,7 @@ DESCRIPTION
|
|
|
309
313
|
list all branches
|
|
310
314
|
```
|
|
311
315
|
|
|
312
|
-
_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.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
313
317
|
|
|
314
318
|
## `eas branch:rename`
|
|
315
319
|
|
|
@@ -329,7 +333,7 @@ DESCRIPTION
|
|
|
329
333
|
rename a branch
|
|
330
334
|
```
|
|
331
335
|
|
|
332
|
-
_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.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
333
337
|
|
|
334
338
|
## `eas branch:view [NAME]`
|
|
335
339
|
|
|
@@ -352,7 +356,7 @@ DESCRIPTION
|
|
|
352
356
|
view a branch
|
|
353
357
|
```
|
|
354
358
|
|
|
355
|
-
_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.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
356
360
|
|
|
357
361
|
## `eas build`
|
|
358
362
|
|
|
@@ -393,7 +397,7 @@ DESCRIPTION
|
|
|
393
397
|
start a build
|
|
394
398
|
```
|
|
395
399
|
|
|
396
|
-
_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.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
397
401
|
|
|
398
402
|
## `eas build:cancel [BUILD_ID]`
|
|
399
403
|
|
|
@@ -412,7 +416,7 @@ DESCRIPTION
|
|
|
412
416
|
cancel a build
|
|
413
417
|
```
|
|
414
418
|
|
|
415
|
-
_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.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
416
420
|
|
|
417
421
|
## `eas build:configure`
|
|
418
422
|
|
|
@@ -429,7 +433,7 @@ DESCRIPTION
|
|
|
429
433
|
configure the project to support EAS Build
|
|
430
434
|
```
|
|
431
435
|
|
|
432
|
-
_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.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
433
437
|
|
|
434
438
|
## `eas build:delete [BUILD_ID]`
|
|
435
439
|
|
|
@@ -448,7 +452,7 @@ DESCRIPTION
|
|
|
448
452
|
delete a build
|
|
449
453
|
```
|
|
450
454
|
|
|
451
|
-
_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.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
452
456
|
|
|
453
457
|
## `eas build:dev`
|
|
454
458
|
|
|
@@ -468,7 +472,7 @@ DESCRIPTION
|
|
|
468
472
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
469
473
|
```
|
|
470
474
|
|
|
471
|
-
_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.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
472
476
|
|
|
473
477
|
## `eas build:download`
|
|
474
478
|
|
|
@@ -489,7 +493,7 @@ DESCRIPTION
|
|
|
489
493
|
download simulator/emulator builds for a given fingerprint hash
|
|
490
494
|
```
|
|
491
495
|
|
|
492
|
-
_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.1/packages/eas-cli/src/commands/build/download.ts)_
|
|
493
497
|
|
|
494
498
|
## `eas build:inspect`
|
|
495
499
|
|
|
@@ -524,7 +528,7 @@ DESCRIPTION
|
|
|
524
528
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
525
529
|
```
|
|
526
530
|
|
|
527
|
-
_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.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
528
532
|
|
|
529
533
|
## `eas build:list`
|
|
530
534
|
|
|
@@ -576,7 +580,7 @@ DESCRIPTION
|
|
|
576
580
|
list all builds for your project
|
|
577
581
|
```
|
|
578
582
|
|
|
579
|
-
_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.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
580
584
|
|
|
581
585
|
## `eas build:resign`
|
|
582
586
|
|
|
@@ -605,7 +609,7 @@ DESCRIPTION
|
|
|
605
609
|
re-sign a build archive
|
|
606
610
|
```
|
|
607
611
|
|
|
608
|
-
_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.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
609
613
|
|
|
610
614
|
## `eas build:run`
|
|
611
615
|
|
|
@@ -631,7 +635,7 @@ DESCRIPTION
|
|
|
631
635
|
run simulator/emulator builds from eas-cli
|
|
632
636
|
```
|
|
633
637
|
|
|
634
|
-
_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.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
635
639
|
|
|
636
640
|
## `eas build:submit`
|
|
637
641
|
|
|
@@ -685,7 +689,7 @@ DESCRIPTION
|
|
|
685
689
|
get the latest version from EAS servers
|
|
686
690
|
```
|
|
687
691
|
|
|
688
|
-
_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.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
689
693
|
|
|
690
694
|
## `eas build:version:set`
|
|
691
695
|
|
|
@@ -704,7 +708,7 @@ DESCRIPTION
|
|
|
704
708
|
update version of an app
|
|
705
709
|
```
|
|
706
710
|
|
|
707
|
-
_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.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
708
712
|
|
|
709
713
|
## `eas build:version:sync`
|
|
710
714
|
|
|
@@ -723,7 +727,7 @@ DESCRIPTION
|
|
|
723
727
|
update a version in native code with a value stored on EAS servers
|
|
724
728
|
```
|
|
725
729
|
|
|
726
|
-
_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.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
727
731
|
|
|
728
732
|
## `eas build:view [BUILD_ID]`
|
|
729
733
|
|
|
@@ -740,7 +744,7 @@ DESCRIPTION
|
|
|
740
744
|
view a build for your project
|
|
741
745
|
```
|
|
742
746
|
|
|
743
|
-
_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.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
744
748
|
|
|
745
749
|
## `eas channel:create [NAME]`
|
|
746
750
|
|
|
@@ -761,7 +765,7 @@ DESCRIPTION
|
|
|
761
765
|
create a channel
|
|
762
766
|
```
|
|
763
767
|
|
|
764
|
-
_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.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
765
769
|
|
|
766
770
|
## `eas channel:edit [NAME]`
|
|
767
771
|
|
|
@@ -783,7 +787,7 @@ DESCRIPTION
|
|
|
783
787
|
point a channel at a new branch
|
|
784
788
|
```
|
|
785
789
|
|
|
786
|
-
_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.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
787
791
|
|
|
788
792
|
## `eas channel:list`
|
|
789
793
|
|
|
@@ -803,7 +807,7 @@ DESCRIPTION
|
|
|
803
807
|
list all channels
|
|
804
808
|
```
|
|
805
809
|
|
|
806
|
-
_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.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
807
811
|
|
|
808
812
|
## `eas channel:pause [NAME]`
|
|
809
813
|
|
|
@@ -825,7 +829,7 @@ DESCRIPTION
|
|
|
825
829
|
pause a channel to stop it from sending updates
|
|
826
830
|
```
|
|
827
831
|
|
|
828
|
-
_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.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
829
833
|
|
|
830
834
|
## `eas channel:resume [NAME]`
|
|
831
835
|
|
|
@@ -847,7 +851,7 @@ DESCRIPTION
|
|
|
847
851
|
resume a channel to start sending updates
|
|
848
852
|
```
|
|
849
853
|
|
|
850
|
-
_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.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
851
855
|
|
|
852
856
|
## `eas channel:rollout [CHANNEL]`
|
|
853
857
|
|
|
@@ -880,7 +884,7 @@ DESCRIPTION
|
|
|
880
884
|
Roll a new branch out on a channel incrementally.
|
|
881
885
|
```
|
|
882
886
|
|
|
883
|
-
_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.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
884
888
|
|
|
885
889
|
## `eas channel:view [NAME]`
|
|
886
890
|
|
|
@@ -903,7 +907,7 @@ DESCRIPTION
|
|
|
903
907
|
view a channel
|
|
904
908
|
```
|
|
905
909
|
|
|
906
|
-
_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.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
907
911
|
|
|
908
912
|
## `eas config`
|
|
909
913
|
|
|
@@ -924,7 +928,7 @@ DESCRIPTION
|
|
|
924
928
|
display project configuration (app.json + eas.json)
|
|
925
929
|
```
|
|
926
930
|
|
|
927
|
-
_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.1/packages/eas-cli/src/commands/config.ts)_
|
|
928
932
|
|
|
929
933
|
## `eas credentials`
|
|
930
934
|
|
|
@@ -941,7 +945,7 @@ DESCRIPTION
|
|
|
941
945
|
manage credentials
|
|
942
946
|
```
|
|
943
947
|
|
|
944
|
-
_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.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
945
949
|
|
|
946
950
|
## `eas credentials:configure-build`
|
|
947
951
|
|
|
@@ -959,7 +963,7 @@ DESCRIPTION
|
|
|
959
963
|
Set up credentials for building your project.
|
|
960
964
|
```
|
|
961
965
|
|
|
962
|
-
_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.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
963
967
|
|
|
964
968
|
## `eas deploy [2m[options][22m`
|
|
965
969
|
|
|
@@ -987,7 +991,7 @@ ALIASES
|
|
|
987
991
|
$ eas worker:deploy
|
|
988
992
|
```
|
|
989
993
|
|
|
990
|
-
_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.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
991
995
|
|
|
992
996
|
## `eas deploy:alias`
|
|
993
997
|
|
|
@@ -1012,7 +1016,49 @@ ALIASES
|
|
|
1012
1016
|
$ eas deploy:promote
|
|
1013
1017
|
```
|
|
1014
1018
|
|
|
1015
|
-
_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.1/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.1/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.1/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1016
1062
|
|
|
1017
1063
|
## `eas deploy:promote`
|
|
1018
1064
|
|
|
@@ -1049,7 +1095,7 @@ DESCRIPTION
|
|
|
1049
1095
|
register new Apple Devices to use for internal distribution
|
|
1050
1096
|
```
|
|
1051
1097
|
|
|
1052
|
-
_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.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1053
1099
|
|
|
1054
1100
|
## `eas device:delete`
|
|
1055
1101
|
|
|
@@ -1069,7 +1115,7 @@ DESCRIPTION
|
|
|
1069
1115
|
remove a registered device from your account
|
|
1070
1116
|
```
|
|
1071
1117
|
|
|
1072
|
-
_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.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1073
1119
|
|
|
1074
1120
|
## `eas device:list`
|
|
1075
1121
|
|
|
@@ -1090,7 +1136,7 @@ DESCRIPTION
|
|
|
1090
1136
|
list all registered devices for your account
|
|
1091
1137
|
```
|
|
1092
1138
|
|
|
1093
|
-
_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.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1094
1140
|
|
|
1095
1141
|
## `eas device:rename`
|
|
1096
1142
|
|
|
@@ -1111,7 +1157,7 @@ DESCRIPTION
|
|
|
1111
1157
|
rename a registered device
|
|
1112
1158
|
```
|
|
1113
1159
|
|
|
1114
|
-
_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.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1115
1161
|
|
|
1116
1162
|
## `eas device:view [UDID]`
|
|
1117
1163
|
|
|
@@ -1125,7 +1171,7 @@ DESCRIPTION
|
|
|
1125
1171
|
view a device for your project
|
|
1126
1172
|
```
|
|
1127
1173
|
|
|
1128
|
-
_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.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1129
1175
|
|
|
1130
1176
|
## `eas diagnostics`
|
|
1131
1177
|
|
|
@@ -1139,7 +1185,7 @@ DESCRIPTION
|
|
|
1139
1185
|
display environment info
|
|
1140
1186
|
```
|
|
1141
1187
|
|
|
1142
|
-
_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.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1143
1189
|
|
|
1144
1190
|
## `eas env:create [ENVIRONMENT]`
|
|
1145
1191
|
|
|
@@ -1168,7 +1214,7 @@ DESCRIPTION
|
|
|
1168
1214
|
create an environment variable for the current project or account
|
|
1169
1215
|
```
|
|
1170
1216
|
|
|
1171
|
-
_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.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1172
1218
|
|
|
1173
1219
|
## `eas env:delete [ENVIRONMENT]`
|
|
1174
1220
|
|
|
@@ -1192,7 +1238,7 @@ DESCRIPTION
|
|
|
1192
1238
|
delete an environment variable for the current project or account
|
|
1193
1239
|
```
|
|
1194
1240
|
|
|
1195
|
-
_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.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1196
1242
|
|
|
1197
1243
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1198
1244
|
|
|
@@ -1213,7 +1259,7 @@ DESCRIPTION
|
|
|
1213
1259
|
execute a command with environment variables from the selected environment
|
|
1214
1260
|
```
|
|
1215
1261
|
|
|
1216
|
-
_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.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1217
1263
|
|
|
1218
1264
|
## `eas env:get [ENVIRONMENT]`
|
|
1219
1265
|
|
|
@@ -1238,7 +1284,7 @@ DESCRIPTION
|
|
|
1238
1284
|
view an environment variable for the current project or account
|
|
1239
1285
|
```
|
|
1240
1286
|
|
|
1241
|
-
_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.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1242
1288
|
|
|
1243
1289
|
## `eas env:list [ENVIRONMENT]`
|
|
1244
1290
|
|
|
@@ -1263,7 +1309,7 @@ DESCRIPTION
|
|
|
1263
1309
|
list environment variables for the current project or account
|
|
1264
1310
|
```
|
|
1265
1311
|
|
|
1266
|
-
_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.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1267
1313
|
|
|
1268
1314
|
## `eas env:pull [ENVIRONMENT]`
|
|
1269
1315
|
|
|
@@ -1286,7 +1332,7 @@ DESCRIPTION
|
|
|
1286
1332
|
pull environment variables for the selected environment to .env file
|
|
1287
1333
|
```
|
|
1288
1334
|
|
|
1289
|
-
_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.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1290
1336
|
|
|
1291
1337
|
## `eas env:push [ENVIRONMENT]`
|
|
1292
1338
|
|
|
@@ -1307,7 +1353,7 @@ DESCRIPTION
|
|
|
1307
1353
|
push environment variables from .env file to the selected environment
|
|
1308
1354
|
```
|
|
1309
1355
|
|
|
1310
|
-
_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.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1311
1357
|
|
|
1312
1358
|
## `eas env:update [ENVIRONMENT]`
|
|
1313
1359
|
|
|
@@ -1338,7 +1384,7 @@ DESCRIPTION
|
|
|
1338
1384
|
update an environment variable on the current project or account
|
|
1339
1385
|
```
|
|
1340
1386
|
|
|
1341
|
-
_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.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1342
1388
|
|
|
1343
1389
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1344
1390
|
|
|
@@ -1383,7 +1429,7 @@ EXAMPLES
|
|
|
1383
1429
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1384
1430
|
```
|
|
1385
1431
|
|
|
1386
|
-
_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.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1387
1433
|
|
|
1388
1434
|
## `eas fingerprint:generate`
|
|
1389
1435
|
|
|
@@ -1414,7 +1460,7 @@ EXAMPLES
|
|
|
1414
1460
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1415
1461
|
```
|
|
1416
1462
|
|
|
1417
|
-
_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.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1418
1464
|
|
|
1419
1465
|
## `eas help [COMMAND]`
|
|
1420
1466
|
|
|
@@ -1522,7 +1568,7 @@ DESCRIPTION
|
|
|
1522
1568
|
validate the local store configuration
|
|
1523
1569
|
```
|
|
1524
1570
|
|
|
1525
|
-
_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.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1526
1572
|
|
|
1527
1573
|
## `eas metadata:pull`
|
|
1528
1574
|
|
|
@@ -1539,7 +1585,7 @@ DESCRIPTION
|
|
|
1539
1585
|
generate the local store configuration from the app stores
|
|
1540
1586
|
```
|
|
1541
1587
|
|
|
1542
|
-
_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.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1543
1589
|
|
|
1544
1590
|
## `eas metadata:push`
|
|
1545
1591
|
|
|
@@ -1556,7 +1602,7 @@ DESCRIPTION
|
|
|
1556
1602
|
sync the local store configuration to the app stores
|
|
1557
1603
|
```
|
|
1558
1604
|
|
|
1559
|
-
_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.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1560
1606
|
|
|
1561
1607
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1562
1608
|
|
|
@@ -1586,7 +1632,7 @@ DESCRIPTION
|
|
|
1586
1632
|
open the project page in a web browser
|
|
1587
1633
|
```
|
|
1588
1634
|
|
|
1589
|
-
_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.1/packages/eas-cli/src/commands/open.ts)_
|
|
1590
1636
|
|
|
1591
1637
|
## `eas project:info`
|
|
1592
1638
|
|
|
@@ -1600,7 +1646,7 @@ DESCRIPTION
|
|
|
1600
1646
|
information about the current project
|
|
1601
1647
|
```
|
|
1602
1648
|
|
|
1603
|
-
_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.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1604
1650
|
|
|
1605
1651
|
## `eas project:init`
|
|
1606
1652
|
|
|
@@ -1623,7 +1669,7 @@ ALIASES
|
|
|
1623
1669
|
$ eas init
|
|
1624
1670
|
```
|
|
1625
1671
|
|
|
1626
|
-
_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.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1627
1673
|
|
|
1628
1674
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1629
1675
|
|
|
@@ -1641,7 +1687,7 @@ ALIASES
|
|
|
1641
1687
|
$ eas onboarding
|
|
1642
1688
|
```
|
|
1643
1689
|
|
|
1644
|
-
_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.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1645
1691
|
|
|
1646
1692
|
## `eas submit`
|
|
1647
1693
|
|
|
@@ -1676,7 +1722,7 @@ ALIASES
|
|
|
1676
1722
|
$ eas build:submit
|
|
1677
1723
|
```
|
|
1678
1724
|
|
|
1679
|
-
_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.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1680
1726
|
|
|
1681
1727
|
## `eas update`
|
|
1682
1728
|
|
|
@@ -1718,7 +1764,7 @@ DESCRIPTION
|
|
|
1718
1764
|
publish an update group
|
|
1719
1765
|
```
|
|
1720
1766
|
|
|
1721
|
-
_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.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1722
1768
|
|
|
1723
1769
|
## `eas update:configure`
|
|
1724
1770
|
|
|
@@ -1738,7 +1784,7 @@ DESCRIPTION
|
|
|
1738
1784
|
configure the project to support EAS Update
|
|
1739
1785
|
```
|
|
1740
1786
|
|
|
1741
|
-
_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.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1742
1788
|
|
|
1743
1789
|
## `eas update:delete GROUPID`
|
|
1744
1790
|
|
|
@@ -1759,7 +1805,7 @@ DESCRIPTION
|
|
|
1759
1805
|
delete all the updates in an update group
|
|
1760
1806
|
```
|
|
1761
1807
|
|
|
1762
|
-
_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.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1763
1809
|
|
|
1764
1810
|
## `eas update:edit [GROUPID]`
|
|
1765
1811
|
|
|
@@ -1783,7 +1829,7 @@ DESCRIPTION
|
|
|
1783
1829
|
edit all the updates in an update group
|
|
1784
1830
|
```
|
|
1785
1831
|
|
|
1786
|
-
_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.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1787
1833
|
|
|
1788
1834
|
## `eas update:list`
|
|
1789
1835
|
|
|
@@ -1805,7 +1851,7 @@ DESCRIPTION
|
|
|
1805
1851
|
view the recent updates
|
|
1806
1852
|
```
|
|
1807
1853
|
|
|
1808
|
-
_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.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1809
1855
|
|
|
1810
1856
|
## `eas update:republish`
|
|
1811
1857
|
|
|
@@ -1841,7 +1887,7 @@ DESCRIPTION
|
|
|
1841
1887
|
roll back to an existing update
|
|
1842
1888
|
```
|
|
1843
1889
|
|
|
1844
|
-
_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.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1845
1891
|
|
|
1846
1892
|
## `eas update:revert-update-rollout`
|
|
1847
1893
|
|
|
@@ -1868,7 +1914,7 @@ DESCRIPTION
|
|
|
1868
1914
|
revert a rollout update for a project
|
|
1869
1915
|
```
|
|
1870
1916
|
|
|
1871
|
-
_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.1/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1872
1918
|
|
|
1873
1919
|
## `eas update:roll-back-to-embedded`
|
|
1874
1920
|
|
|
@@ -1896,7 +1942,7 @@ DESCRIPTION
|
|
|
1896
1942
|
roll back to the embedded update
|
|
1897
1943
|
```
|
|
1898
1944
|
|
|
1899
|
-
_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.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1900
1946
|
|
|
1901
1947
|
## `eas update:rollback`
|
|
1902
1948
|
|
|
@@ -1916,7 +1962,7 @@ DESCRIPTION
|
|
|
1916
1962
|
roll back to an embedded update or an existing update
|
|
1917
1963
|
```
|
|
1918
1964
|
|
|
1919
|
-
_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.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1920
1966
|
|
|
1921
1967
|
## `eas update:view GROUPID`
|
|
1922
1968
|
|
|
@@ -1936,7 +1982,7 @@ DESCRIPTION
|
|
|
1936
1982
|
update group details
|
|
1937
1983
|
```
|
|
1938
1984
|
|
|
1939
|
-
_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.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1940
1986
|
|
|
1941
1987
|
## `eas upload`
|
|
1942
1988
|
|
|
@@ -1957,7 +2003,7 @@ DESCRIPTION
|
|
|
1957
2003
|
upload a local build and generate a sharable link
|
|
1958
2004
|
```
|
|
1959
2005
|
|
|
1960
|
-
_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.1/packages/eas-cli/src/commands/upload.ts)_
|
|
1961
2007
|
|
|
1962
2008
|
## `eas webhook:create`
|
|
1963
2009
|
|
|
@@ -1978,7 +2024,7 @@ DESCRIPTION
|
|
|
1978
2024
|
create a webhook
|
|
1979
2025
|
```
|
|
1980
2026
|
|
|
1981
|
-
_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.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1982
2028
|
|
|
1983
2029
|
## `eas webhook:delete [ID]`
|
|
1984
2030
|
|
|
@@ -1998,7 +2044,7 @@ DESCRIPTION
|
|
|
1998
2044
|
delete a webhook
|
|
1999
2045
|
```
|
|
2000
2046
|
|
|
2001
|
-
_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.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2002
2048
|
|
|
2003
2049
|
## `eas webhook:list`
|
|
2004
2050
|
|
|
@@ -2016,7 +2062,7 @@ DESCRIPTION
|
|
|
2016
2062
|
list webhooks
|
|
2017
2063
|
```
|
|
2018
2064
|
|
|
2019
|
-
_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.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2020
2066
|
|
|
2021
2067
|
## `eas webhook:update`
|
|
2022
2068
|
|
|
@@ -2038,7 +2084,7 @@ DESCRIPTION
|
|
|
2038
2084
|
update a webhook
|
|
2039
2085
|
```
|
|
2040
2086
|
|
|
2041
|
-
_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.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2042
2088
|
|
|
2043
2089
|
## `eas webhook:view ID`
|
|
2044
2090
|
|
|
@@ -2055,7 +2101,7 @@ DESCRIPTION
|
|
|
2055
2101
|
view a webhook
|
|
2056
2102
|
```
|
|
2057
2103
|
|
|
2058
|
-
_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.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2059
2105
|
|
|
2060
2106
|
## `eas whoami`
|
|
2061
2107
|
|
|
@@ -2095,6 +2141,44 @@ ALIASES
|
|
|
2095
2141
|
$ eas deploy:promote
|
|
2096
2142
|
```
|
|
2097
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
|
+
|
|
2098
2182
|
## `eas deploy [2m[options][22m`
|
|
2099
2183
|
|
|
2100
2184
|
deploy your Expo Router web build and API Routes
|
|
@@ -2137,7 +2221,7 @@ DESCRIPTION
|
|
|
2137
2221
|
to cancel.
|
|
2138
2222
|
```
|
|
2139
2223
|
|
|
2140
|
-
_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.1/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2141
2225
|
|
|
2142
2226
|
## `eas workflow:create [NAME]`
|
|
2143
2227
|
|
|
@@ -2157,7 +2241,7 @@ DESCRIPTION
|
|
|
2157
2241
|
create a new workflow configuration YAML file
|
|
2158
2242
|
```
|
|
2159
2243
|
|
|
2160
|
-
_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.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2161
2245
|
|
|
2162
2246
|
## `eas workflow:logs [ID]`
|
|
2163
2247
|
|
|
@@ -2181,7 +2265,7 @@ DESCRIPTION
|
|
|
2181
2265
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2182
2266
|
```
|
|
2183
2267
|
|
|
2184
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2268
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.17.1/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2185
2269
|
|
|
2186
2270
|
## `eas workflow:run [FILE]`
|
|
2187
2271
|
|
|
@@ -2213,7 +2297,7 @@ FLAG DESCRIPTIONS
|
|
|
2213
2297
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2214
2298
|
```
|
|
2215
2299
|
|
|
2216
|
-
_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.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2217
2301
|
|
|
2218
2302
|
## `eas workflow:runs`
|
|
2219
2303
|
|
|
@@ -2238,7 +2322,7 @@ DESCRIPTION
|
|
|
2238
2322
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2239
2323
|
```
|
|
2240
2324
|
|
|
2241
|
-
_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.1/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2242
2326
|
|
|
2243
2327
|
## `eas workflow:validate PATH`
|
|
2244
2328
|
|
|
@@ -2258,7 +2342,7 @@ DESCRIPTION
|
|
|
2258
2342
|
validate a workflow configuration yaml file
|
|
2259
2343
|
```
|
|
2260
2344
|
|
|
2261
|
-
_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.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2262
2346
|
|
|
2263
2347
|
## `eas workflow:view [ID]`
|
|
2264
2348
|
|
|
@@ -2280,5 +2364,5 @@ DESCRIPTION
|
|
|
2280
2364
|
workflow runs for the current project.
|
|
2281
2365
|
```
|
|
2282
2366
|
|
|
2283
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2367
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.17.1/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2284
2368
|
<!-- commandsstop -->
|