eas-cli 16.17.4 → 16.18.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 +109 -86
- package/build/build/utils/formatBuild.js +24 -2
- package/build/commands/channel/delete.d.ts +0 -1
- package/build/commands/channel/delete.js +0 -1
- package/build/commands/env/push.js +3 -3
- package/build/commands/metadata/pull.js +1 -1
- package/build/commands/submit/internal.js +1 -1
- package/build/commands/update/rollback.js +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +1 -1
- package/build/graphql/generated.d.ts +102 -27
- package/build/graphql/generated.js +10 -3
- package/build/graphql/types/Build.js +4 -0
- package/build/log.js +5 -0
- package/oclif.manifest.json +2 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -81,6 +81,7 @@ eas --help COMMAND
|
|
|
81
81
|
* [`eas build:version:sync`](#eas-buildversionsync)
|
|
82
82
|
* [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
|
|
83
83
|
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
84
|
+
* [`eas channel:delete [NAME]`](#eas-channeldelete-name)
|
|
84
85
|
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
85
86
|
* [`eas channel:list`](#eas-channellist)
|
|
86
87
|
* [`eas channel:pause [NAME]`](#eas-channelpause-name)
|
|
@@ -172,7 +173,7 @@ ALIASES
|
|
|
172
173
|
$ eas login
|
|
173
174
|
```
|
|
174
175
|
|
|
175
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
176
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
176
177
|
|
|
177
178
|
## `eas account:logout`
|
|
178
179
|
|
|
@@ -189,7 +190,7 @@ ALIASES
|
|
|
189
190
|
$ eas logout
|
|
190
191
|
```
|
|
191
192
|
|
|
192
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
193
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
193
194
|
|
|
194
195
|
## `eas account:view`
|
|
195
196
|
|
|
@@ -206,7 +207,7 @@ ALIASES
|
|
|
206
207
|
$ eas whoami
|
|
207
208
|
```
|
|
208
209
|
|
|
209
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
210
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
210
211
|
|
|
211
212
|
## `eas analytics [STATUS]`
|
|
212
213
|
|
|
@@ -220,7 +221,7 @@ DESCRIPTION
|
|
|
220
221
|
display or change analytics settings
|
|
221
222
|
```
|
|
222
223
|
|
|
223
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
224
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
224
225
|
|
|
225
226
|
## `eas autocomplete [SHELL]`
|
|
226
227
|
|
|
@@ -272,7 +273,7 @@ DESCRIPTION
|
|
|
272
273
|
create a branch
|
|
273
274
|
```
|
|
274
275
|
|
|
275
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
276
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
276
277
|
|
|
277
278
|
## `eas branch:delete [NAME]`
|
|
278
279
|
|
|
@@ -293,7 +294,7 @@ DESCRIPTION
|
|
|
293
294
|
delete a branch
|
|
294
295
|
```
|
|
295
296
|
|
|
296
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
297
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
297
298
|
|
|
298
299
|
## `eas branch:list`
|
|
299
300
|
|
|
@@ -313,7 +314,7 @@ DESCRIPTION
|
|
|
313
314
|
list all branches
|
|
314
315
|
```
|
|
315
316
|
|
|
316
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
317
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
317
318
|
|
|
318
319
|
## `eas branch:rename`
|
|
319
320
|
|
|
@@ -333,7 +334,7 @@ DESCRIPTION
|
|
|
333
334
|
rename a branch
|
|
334
335
|
```
|
|
335
336
|
|
|
336
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
337
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
337
338
|
|
|
338
339
|
## `eas branch:view [NAME]`
|
|
339
340
|
|
|
@@ -356,7 +357,7 @@ DESCRIPTION
|
|
|
356
357
|
view a branch
|
|
357
358
|
```
|
|
358
359
|
|
|
359
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
360
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
360
361
|
|
|
361
362
|
## `eas build`
|
|
362
363
|
|
|
@@ -397,7 +398,7 @@ DESCRIPTION
|
|
|
397
398
|
start a build
|
|
398
399
|
```
|
|
399
400
|
|
|
400
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
401
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
401
402
|
|
|
402
403
|
## `eas build:cancel [BUILD_ID]`
|
|
403
404
|
|
|
@@ -416,7 +417,7 @@ DESCRIPTION
|
|
|
416
417
|
cancel a build
|
|
417
418
|
```
|
|
418
419
|
|
|
419
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
420
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
420
421
|
|
|
421
422
|
## `eas build:configure`
|
|
422
423
|
|
|
@@ -433,7 +434,7 @@ DESCRIPTION
|
|
|
433
434
|
configure the project to support EAS Build
|
|
434
435
|
```
|
|
435
436
|
|
|
436
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
437
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
437
438
|
|
|
438
439
|
## `eas build:delete [BUILD_ID]`
|
|
439
440
|
|
|
@@ -452,7 +453,7 @@ DESCRIPTION
|
|
|
452
453
|
delete a build
|
|
453
454
|
```
|
|
454
455
|
|
|
455
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
456
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
456
457
|
|
|
457
458
|
## `eas build:dev`
|
|
458
459
|
|
|
@@ -472,7 +473,7 @@ DESCRIPTION
|
|
|
472
473
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
473
474
|
```
|
|
474
475
|
|
|
475
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
476
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
476
477
|
|
|
477
478
|
## `eas build:download`
|
|
478
479
|
|
|
@@ -493,7 +494,7 @@ DESCRIPTION
|
|
|
493
494
|
download simulator/emulator builds for a given fingerprint hash
|
|
494
495
|
```
|
|
495
496
|
|
|
496
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
497
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/download.ts)_
|
|
497
498
|
|
|
498
499
|
## `eas build:inspect`
|
|
499
500
|
|
|
@@ -528,7 +529,7 @@ DESCRIPTION
|
|
|
528
529
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
529
530
|
```
|
|
530
531
|
|
|
531
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
532
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
532
533
|
|
|
533
534
|
## `eas build:list`
|
|
534
535
|
|
|
@@ -580,7 +581,7 @@ DESCRIPTION
|
|
|
580
581
|
list all builds for your project
|
|
581
582
|
```
|
|
582
583
|
|
|
583
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
584
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
584
585
|
|
|
585
586
|
## `eas build:resign`
|
|
586
587
|
|
|
@@ -609,7 +610,7 @@ DESCRIPTION
|
|
|
609
610
|
re-sign a build archive
|
|
610
611
|
```
|
|
611
612
|
|
|
612
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
613
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
613
614
|
|
|
614
615
|
## `eas build:run`
|
|
615
616
|
|
|
@@ -635,7 +636,7 @@ DESCRIPTION
|
|
|
635
636
|
run simulator/emulator builds from eas-cli
|
|
636
637
|
```
|
|
637
638
|
|
|
638
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
639
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
639
640
|
|
|
640
641
|
## `eas build:submit`
|
|
641
642
|
|
|
@@ -689,7 +690,7 @@ DESCRIPTION
|
|
|
689
690
|
get the latest version from EAS servers
|
|
690
691
|
```
|
|
691
692
|
|
|
692
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
693
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
693
694
|
|
|
694
695
|
## `eas build:version:set`
|
|
695
696
|
|
|
@@ -708,7 +709,7 @@ DESCRIPTION
|
|
|
708
709
|
update version of an app
|
|
709
710
|
```
|
|
710
711
|
|
|
711
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
712
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
712
713
|
|
|
713
714
|
## `eas build:version:sync`
|
|
714
715
|
|
|
@@ -727,7 +728,7 @@ DESCRIPTION
|
|
|
727
728
|
update a version in native code with a value stored on EAS servers
|
|
728
729
|
```
|
|
729
730
|
|
|
730
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
731
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
731
732
|
|
|
732
733
|
## `eas build:view [BUILD_ID]`
|
|
733
734
|
|
|
@@ -744,7 +745,7 @@ DESCRIPTION
|
|
|
744
745
|
view a build for your project
|
|
745
746
|
```
|
|
746
747
|
|
|
747
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
748
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
748
749
|
|
|
749
750
|
## `eas channel:create [NAME]`
|
|
750
751
|
|
|
@@ -765,7 +766,28 @@ DESCRIPTION
|
|
|
765
766
|
create a channel
|
|
766
767
|
```
|
|
767
768
|
|
|
768
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
769
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
770
|
+
|
|
771
|
+
## `eas channel:delete [NAME]`
|
|
772
|
+
|
|
773
|
+
Delete a channel
|
|
774
|
+
|
|
775
|
+
```
|
|
776
|
+
USAGE
|
|
777
|
+
$ eas channel:delete [NAME] [--json --non-interactive]
|
|
778
|
+
|
|
779
|
+
ARGUMENTS
|
|
780
|
+
NAME Name of the channel to delete
|
|
781
|
+
|
|
782
|
+
FLAGS
|
|
783
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
784
|
+
--non-interactive Run the command in non-interactive mode.
|
|
785
|
+
|
|
786
|
+
DESCRIPTION
|
|
787
|
+
Delete a channel
|
|
788
|
+
```
|
|
789
|
+
|
|
790
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
769
791
|
|
|
770
792
|
## `eas channel:edit [NAME]`
|
|
771
793
|
|
|
@@ -787,7 +809,7 @@ DESCRIPTION
|
|
|
787
809
|
point a channel at a new branch
|
|
788
810
|
```
|
|
789
811
|
|
|
790
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
812
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
791
813
|
|
|
792
814
|
## `eas channel:list`
|
|
793
815
|
|
|
@@ -807,7 +829,7 @@ DESCRIPTION
|
|
|
807
829
|
list all channels
|
|
808
830
|
```
|
|
809
831
|
|
|
810
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
832
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
811
833
|
|
|
812
834
|
## `eas channel:pause [NAME]`
|
|
813
835
|
|
|
@@ -829,7 +851,7 @@ DESCRIPTION
|
|
|
829
851
|
pause a channel to stop it from sending updates
|
|
830
852
|
```
|
|
831
853
|
|
|
832
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
854
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
833
855
|
|
|
834
856
|
## `eas channel:resume [NAME]`
|
|
835
857
|
|
|
@@ -851,7 +873,7 @@ DESCRIPTION
|
|
|
851
873
|
resume a channel to start sending updates
|
|
852
874
|
```
|
|
853
875
|
|
|
854
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
876
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
855
877
|
|
|
856
878
|
## `eas channel:rollout [CHANNEL]`
|
|
857
879
|
|
|
@@ -884,7 +906,7 @@ DESCRIPTION
|
|
|
884
906
|
Roll a new branch out on a channel incrementally.
|
|
885
907
|
```
|
|
886
908
|
|
|
887
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
909
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
888
910
|
|
|
889
911
|
## `eas channel:view [NAME]`
|
|
890
912
|
|
|
@@ -907,7 +929,7 @@ DESCRIPTION
|
|
|
907
929
|
view a channel
|
|
908
930
|
```
|
|
909
931
|
|
|
910
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
932
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
911
933
|
|
|
912
934
|
## `eas config`
|
|
913
935
|
|
|
@@ -928,7 +950,7 @@ DESCRIPTION
|
|
|
928
950
|
display project configuration (app.json + eas.json)
|
|
929
951
|
```
|
|
930
952
|
|
|
931
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
953
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/config.ts)_
|
|
932
954
|
|
|
933
955
|
## `eas credentials`
|
|
934
956
|
|
|
@@ -945,7 +967,7 @@ DESCRIPTION
|
|
|
945
967
|
manage credentials
|
|
946
968
|
```
|
|
947
969
|
|
|
948
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
970
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
949
971
|
|
|
950
972
|
## `eas credentials:configure-build`
|
|
951
973
|
|
|
@@ -963,7 +985,7 @@ DESCRIPTION
|
|
|
963
985
|
Set up credentials for building your project.
|
|
964
986
|
```
|
|
965
987
|
|
|
966
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
988
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
967
989
|
|
|
968
990
|
## `eas deploy [options]`
|
|
969
991
|
|
|
@@ -991,7 +1013,7 @@ ALIASES
|
|
|
991
1013
|
$ eas worker:deploy
|
|
992
1014
|
```
|
|
993
1015
|
|
|
994
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1016
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
995
1017
|
|
|
996
1018
|
## `eas deploy:alias`
|
|
997
1019
|
|
|
@@ -1016,7 +1038,7 @@ ALIASES
|
|
|
1016
1038
|
$ eas deploy:promote
|
|
1017
1039
|
```
|
|
1018
1040
|
|
|
1019
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1041
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1020
1042
|
|
|
1021
1043
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1022
1044
|
|
|
@@ -1037,7 +1059,7 @@ ALIASES
|
|
|
1037
1059
|
$ eas worker:alias:delete
|
|
1038
1060
|
```
|
|
1039
1061
|
|
|
1040
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1062
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1041
1063
|
|
|
1042
1064
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1043
1065
|
|
|
@@ -1058,7 +1080,7 @@ ALIASES
|
|
|
1058
1080
|
$ eas worker:delete
|
|
1059
1081
|
```
|
|
1060
1082
|
|
|
1061
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1083
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1062
1084
|
|
|
1063
1085
|
## `eas deploy:promote`
|
|
1064
1086
|
|
|
@@ -1095,7 +1117,7 @@ DESCRIPTION
|
|
|
1095
1117
|
register new Apple Devices to use for internal distribution
|
|
1096
1118
|
```
|
|
1097
1119
|
|
|
1098
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1120
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1099
1121
|
|
|
1100
1122
|
## `eas device:delete`
|
|
1101
1123
|
|
|
@@ -1115,7 +1137,7 @@ DESCRIPTION
|
|
|
1115
1137
|
remove a registered device from your account
|
|
1116
1138
|
```
|
|
1117
1139
|
|
|
1118
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1140
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1119
1141
|
|
|
1120
1142
|
## `eas device:list`
|
|
1121
1143
|
|
|
@@ -1136,7 +1158,7 @@ DESCRIPTION
|
|
|
1136
1158
|
list all registered devices for your account
|
|
1137
1159
|
```
|
|
1138
1160
|
|
|
1139
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1161
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1140
1162
|
|
|
1141
1163
|
## `eas device:rename`
|
|
1142
1164
|
|
|
@@ -1157,7 +1179,7 @@ DESCRIPTION
|
|
|
1157
1179
|
rename a registered device
|
|
1158
1180
|
```
|
|
1159
1181
|
|
|
1160
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1182
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1161
1183
|
|
|
1162
1184
|
## `eas device:view [UDID]`
|
|
1163
1185
|
|
|
@@ -1171,7 +1193,7 @@ DESCRIPTION
|
|
|
1171
1193
|
view a device for your project
|
|
1172
1194
|
```
|
|
1173
1195
|
|
|
1174
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1196
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1175
1197
|
|
|
1176
1198
|
## `eas diagnostics`
|
|
1177
1199
|
|
|
@@ -1185,7 +1207,7 @@ DESCRIPTION
|
|
|
1185
1207
|
display environment info
|
|
1186
1208
|
```
|
|
1187
1209
|
|
|
1188
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1210
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1189
1211
|
|
|
1190
1212
|
## `eas env:create [ENVIRONMENT]`
|
|
1191
1213
|
|
|
@@ -1214,7 +1236,7 @@ DESCRIPTION
|
|
|
1214
1236
|
create an environment variable for the current project or account
|
|
1215
1237
|
```
|
|
1216
1238
|
|
|
1217
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1239
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1218
1240
|
|
|
1219
1241
|
## `eas env:delete [ENVIRONMENT]`
|
|
1220
1242
|
|
|
@@ -1238,7 +1260,7 @@ DESCRIPTION
|
|
|
1238
1260
|
delete an environment variable for the current project or account
|
|
1239
1261
|
```
|
|
1240
1262
|
|
|
1241
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1263
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1242
1264
|
|
|
1243
1265
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1244
1266
|
|
|
@@ -1259,7 +1281,7 @@ DESCRIPTION
|
|
|
1259
1281
|
execute a command with environment variables from the selected environment
|
|
1260
1282
|
```
|
|
1261
1283
|
|
|
1262
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1284
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1263
1285
|
|
|
1264
1286
|
## `eas env:get [ENVIRONMENT]`
|
|
1265
1287
|
|
|
@@ -1284,7 +1306,7 @@ DESCRIPTION
|
|
|
1284
1306
|
view an environment variable for the current project or account
|
|
1285
1307
|
```
|
|
1286
1308
|
|
|
1287
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1309
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1288
1310
|
|
|
1289
1311
|
## `eas env:list [ENVIRONMENT]`
|
|
1290
1312
|
|
|
@@ -1309,7 +1331,7 @@ DESCRIPTION
|
|
|
1309
1331
|
list environment variables for the current project or account
|
|
1310
1332
|
```
|
|
1311
1333
|
|
|
1312
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1334
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1313
1335
|
|
|
1314
1336
|
## `eas env:pull [ENVIRONMENT]`
|
|
1315
1337
|
|
|
@@ -1332,7 +1354,7 @@ DESCRIPTION
|
|
|
1332
1354
|
pull environment variables for the selected environment to .env file
|
|
1333
1355
|
```
|
|
1334
1356
|
|
|
1335
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1357
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1336
1358
|
|
|
1337
1359
|
## `eas env:push [ENVIRONMENT]`
|
|
1338
1360
|
|
|
@@ -1353,7 +1375,7 @@ DESCRIPTION
|
|
|
1353
1375
|
push environment variables from .env file to the selected environment
|
|
1354
1376
|
```
|
|
1355
1377
|
|
|
1356
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1378
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1357
1379
|
|
|
1358
1380
|
## `eas env:update [ENVIRONMENT]`
|
|
1359
1381
|
|
|
@@ -1384,7 +1406,7 @@ DESCRIPTION
|
|
|
1384
1406
|
update an environment variable on the current project or account
|
|
1385
1407
|
```
|
|
1386
1408
|
|
|
1387
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1409
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1388
1410
|
|
|
1389
1411
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1390
1412
|
|
|
@@ -1429,7 +1451,7 @@ EXAMPLES
|
|
|
1429
1451
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1430
1452
|
```
|
|
1431
1453
|
|
|
1432
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1454
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1433
1455
|
|
|
1434
1456
|
## `eas fingerprint:generate`
|
|
1435
1457
|
|
|
@@ -1460,7 +1482,7 @@ EXAMPLES
|
|
|
1460
1482
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1461
1483
|
```
|
|
1462
1484
|
|
|
1463
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1485
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1464
1486
|
|
|
1465
1487
|
## `eas help [COMMAND]`
|
|
1466
1488
|
|
|
@@ -1568,7 +1590,7 @@ DESCRIPTION
|
|
|
1568
1590
|
validate the local store configuration
|
|
1569
1591
|
```
|
|
1570
1592
|
|
|
1571
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1593
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1572
1594
|
|
|
1573
1595
|
## `eas metadata:pull`
|
|
1574
1596
|
|
|
@@ -1585,7 +1607,7 @@ DESCRIPTION
|
|
|
1585
1607
|
generate the local store configuration from the app stores
|
|
1586
1608
|
```
|
|
1587
1609
|
|
|
1588
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1610
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1589
1611
|
|
|
1590
1612
|
## `eas metadata:push`
|
|
1591
1613
|
|
|
@@ -1602,7 +1624,7 @@ DESCRIPTION
|
|
|
1602
1624
|
sync the local store configuration to the app stores
|
|
1603
1625
|
```
|
|
1604
1626
|
|
|
1605
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1627
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1606
1628
|
|
|
1607
1629
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1608
1630
|
|
|
@@ -1632,7 +1654,7 @@ DESCRIPTION
|
|
|
1632
1654
|
open the project page in a web browser
|
|
1633
1655
|
```
|
|
1634
1656
|
|
|
1635
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1657
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/open.ts)_
|
|
1636
1658
|
|
|
1637
1659
|
## `eas project:info`
|
|
1638
1660
|
|
|
@@ -1646,7 +1668,7 @@ DESCRIPTION
|
|
|
1646
1668
|
information about the current project
|
|
1647
1669
|
```
|
|
1648
1670
|
|
|
1649
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1671
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1650
1672
|
|
|
1651
1673
|
## `eas project:init`
|
|
1652
1674
|
|
|
@@ -1669,7 +1691,7 @@ ALIASES
|
|
|
1669
1691
|
$ eas init
|
|
1670
1692
|
```
|
|
1671
1693
|
|
|
1672
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1694
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1673
1695
|
|
|
1674
1696
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1675
1697
|
|
|
@@ -1687,7 +1709,7 @@ ALIASES
|
|
|
1687
1709
|
$ eas onboarding
|
|
1688
1710
|
```
|
|
1689
1711
|
|
|
1690
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1712
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1691
1713
|
|
|
1692
1714
|
## `eas submit`
|
|
1693
1715
|
|
|
@@ -1722,7 +1744,7 @@ ALIASES
|
|
|
1722
1744
|
$ eas build:submit
|
|
1723
1745
|
```
|
|
1724
1746
|
|
|
1725
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1747
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1726
1748
|
|
|
1727
1749
|
## `eas update`
|
|
1728
1750
|
|
|
@@ -1764,7 +1786,7 @@ DESCRIPTION
|
|
|
1764
1786
|
publish an update group
|
|
1765
1787
|
```
|
|
1766
1788
|
|
|
1767
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1789
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1768
1790
|
|
|
1769
1791
|
## `eas update:configure`
|
|
1770
1792
|
|
|
@@ -1784,7 +1806,7 @@ DESCRIPTION
|
|
|
1784
1806
|
configure the project to support EAS Update
|
|
1785
1807
|
```
|
|
1786
1808
|
|
|
1787
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1809
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1788
1810
|
|
|
1789
1811
|
## `eas update:delete GROUPID`
|
|
1790
1812
|
|
|
@@ -1805,7 +1827,7 @@ DESCRIPTION
|
|
|
1805
1827
|
delete all the updates in an update group
|
|
1806
1828
|
```
|
|
1807
1829
|
|
|
1808
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1830
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1809
1831
|
|
|
1810
1832
|
## `eas update:edit [GROUPID]`
|
|
1811
1833
|
|
|
@@ -1829,7 +1851,7 @@ DESCRIPTION
|
|
|
1829
1851
|
edit all the updates in an update group
|
|
1830
1852
|
```
|
|
1831
1853
|
|
|
1832
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1854
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1833
1855
|
|
|
1834
1856
|
## `eas update:list`
|
|
1835
1857
|
|
|
@@ -1851,7 +1873,7 @@ DESCRIPTION
|
|
|
1851
1873
|
view the recent updates
|
|
1852
1874
|
```
|
|
1853
1875
|
|
|
1854
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1876
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1855
1877
|
|
|
1856
1878
|
## `eas update:republish`
|
|
1857
1879
|
|
|
@@ -1887,7 +1909,7 @@ DESCRIPTION
|
|
|
1887
1909
|
roll back to an existing update
|
|
1888
1910
|
```
|
|
1889
1911
|
|
|
1890
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1912
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1891
1913
|
|
|
1892
1914
|
## `eas update:revert-update-rollout`
|
|
1893
1915
|
|
|
@@ -1914,7 +1936,7 @@ DESCRIPTION
|
|
|
1914
1936
|
revert a rollout update for a project
|
|
1915
1937
|
```
|
|
1916
1938
|
|
|
1917
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1939
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1918
1940
|
|
|
1919
1941
|
## `eas update:roll-back-to-embedded`
|
|
1920
1942
|
|
|
@@ -1942,11 +1964,11 @@ DESCRIPTION
|
|
|
1942
1964
|
roll back to the embedded update
|
|
1943
1965
|
```
|
|
1944
1966
|
|
|
1945
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1967
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1946
1968
|
|
|
1947
1969
|
## `eas update:rollback`
|
|
1948
1970
|
|
|
1949
|
-
|
|
1971
|
+
Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
1950
1972
|
|
|
1951
1973
|
```
|
|
1952
1974
|
USAGE
|
|
@@ -1959,10 +1981,11 @@ FLAGS
|
|
|
1959
1981
|
https://docs.expo.dev/eas-update/code-signing/
|
|
1960
1982
|
|
|
1961
1983
|
DESCRIPTION
|
|
1962
|
-
|
|
1984
|
+
Roll back to an embedded update or an existing update. Users wishing to run this command non-interactively should
|
|
1985
|
+
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
1963
1986
|
```
|
|
1964
1987
|
|
|
1965
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1988
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1966
1989
|
|
|
1967
1990
|
## `eas update:view GROUPID`
|
|
1968
1991
|
|
|
@@ -1982,7 +2005,7 @@ DESCRIPTION
|
|
|
1982
2005
|
update group details
|
|
1983
2006
|
```
|
|
1984
2007
|
|
|
1985
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2008
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1986
2009
|
|
|
1987
2010
|
## `eas upload`
|
|
1988
2011
|
|
|
@@ -2003,7 +2026,7 @@ DESCRIPTION
|
|
|
2003
2026
|
upload a local build and generate a sharable link
|
|
2004
2027
|
```
|
|
2005
2028
|
|
|
2006
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2029
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/upload.ts)_
|
|
2007
2030
|
|
|
2008
2031
|
## `eas webhook:create`
|
|
2009
2032
|
|
|
@@ -2024,7 +2047,7 @@ DESCRIPTION
|
|
|
2024
2047
|
create a webhook
|
|
2025
2048
|
```
|
|
2026
2049
|
|
|
2027
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2050
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2028
2051
|
|
|
2029
2052
|
## `eas webhook:delete [ID]`
|
|
2030
2053
|
|
|
@@ -2044,7 +2067,7 @@ DESCRIPTION
|
|
|
2044
2067
|
delete a webhook
|
|
2045
2068
|
```
|
|
2046
2069
|
|
|
2047
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2070
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2048
2071
|
|
|
2049
2072
|
## `eas webhook:list`
|
|
2050
2073
|
|
|
@@ -2062,7 +2085,7 @@ DESCRIPTION
|
|
|
2062
2085
|
list webhooks
|
|
2063
2086
|
```
|
|
2064
2087
|
|
|
2065
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2088
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2066
2089
|
|
|
2067
2090
|
## `eas webhook:update`
|
|
2068
2091
|
|
|
@@ -2084,7 +2107,7 @@ DESCRIPTION
|
|
|
2084
2107
|
update a webhook
|
|
2085
2108
|
```
|
|
2086
2109
|
|
|
2087
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2110
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2088
2111
|
|
|
2089
2112
|
## `eas webhook:view ID`
|
|
2090
2113
|
|
|
@@ -2101,7 +2124,7 @@ DESCRIPTION
|
|
|
2101
2124
|
view a webhook
|
|
2102
2125
|
```
|
|
2103
2126
|
|
|
2104
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2127
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2105
2128
|
|
|
2106
2129
|
## `eas whoami`
|
|
2107
2130
|
|
|
@@ -2221,7 +2244,7 @@ DESCRIPTION
|
|
|
2221
2244
|
to cancel.
|
|
2222
2245
|
```
|
|
2223
2246
|
|
|
2224
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2247
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2225
2248
|
|
|
2226
2249
|
## `eas workflow:create [NAME]`
|
|
2227
2250
|
|
|
@@ -2241,7 +2264,7 @@ DESCRIPTION
|
|
|
2241
2264
|
create a new workflow configuration YAML file
|
|
2242
2265
|
```
|
|
2243
2266
|
|
|
2244
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2267
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2245
2268
|
|
|
2246
2269
|
## `eas workflow:logs [ID]`
|
|
2247
2270
|
|
|
@@ -2265,7 +2288,7 @@ DESCRIPTION
|
|
|
2265
2288
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2266
2289
|
```
|
|
2267
2290
|
|
|
2268
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2291
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2269
2292
|
|
|
2270
2293
|
## `eas workflow:run [FILE]`
|
|
2271
2294
|
|
|
@@ -2297,7 +2320,7 @@ FLAG DESCRIPTIONS
|
|
|
2297
2320
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2298
2321
|
```
|
|
2299
2322
|
|
|
2300
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2323
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2301
2324
|
|
|
2302
2325
|
## `eas workflow:runs`
|
|
2303
2326
|
|
|
@@ -2322,7 +2345,7 @@ DESCRIPTION
|
|
|
2322
2345
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2323
2346
|
```
|
|
2324
2347
|
|
|
2325
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2348
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2326
2349
|
|
|
2327
2350
|
## `eas workflow:validate PATH`
|
|
2328
2351
|
|
|
@@ -2342,7 +2365,7 @@ DESCRIPTION
|
|
|
2342
2365
|
validate a workflow configuration yaml file
|
|
2343
2366
|
```
|
|
2344
2367
|
|
|
2345
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2368
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2346
2369
|
|
|
2347
2370
|
## `eas workflow:view [ID]`
|
|
2348
2371
|
|
|
@@ -2364,5 +2387,5 @@ DESCRIPTION
|
|
|
2364
2387
|
workflow runs for the current project.
|
|
2365
2388
|
```
|
|
2366
2389
|
|
|
2367
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2390
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v16.18.1/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2368
2391
|
<!-- commandsstop -->
|