eas-cli 14.5.0 → 14.6.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 +126 -72
- package/build/build/android/graphql.js +2 -0
- package/build/build/android/prepareJob.js +1 -0
- package/build/build/android/version.d.ts +1 -0
- package/build/build/android/version.js +5 -1
- package/build/build/configure.d.ts +11 -0
- package/build/build/configure.js +46 -1
- package/build/build/evaluateConfigWithEnvVarsAsync.js +2 -4
- package/build/build/ios/build.js +2 -0
- package/build/build/ios/graphql.js +2 -0
- package/build/build/ios/prepareJob.js +1 -0
- package/build/build/ios/version.js +4 -1
- package/build/build/local.js +1 -1
- package/build/build/metadata.js +0 -1
- package/build/build/runBuildAndSubmit.d.ts +12 -1
- package/build/build/runBuildAndSubmit.js +16 -13
- package/build/build/utils/environment.d.ts +4 -0
- package/build/build/utils/environment.js +20 -0
- package/build/commands/build/dev.d.ts +23 -0
- package/build/commands/build/dev.js +225 -0
- package/build/commands/build/index.js +9 -1
- package/build/commands/build/inspect.js +26 -18
- package/build/commands/build/internal.js +22 -14
- package/build/commands/fingerprint/compare.d.ts +14 -1
- package/build/commands/fingerprint/compare.js +192 -53
- package/build/commands/project/onboarding.js +23 -14
- package/build/credentials/ios/appstore/ensureAppExists.d.ts +22 -1
- package/build/credentials/ios/appstore/ensureAppExists.js +73 -2
- package/build/credentials/ios/appstore/ensureTestFlightGroup.d.ts +7 -0
- package/build/credentials/ios/appstore/ensureTestFlightGroup.js +158 -0
- package/build/credentials/ios/appstore/provisioningProfile.js +1 -0
- package/build/graphql/generated.d.ts +193 -3
- package/build/graphql/generated.js +11 -2
- package/build/graphql/queries/FingerprintQuery.d.ts +16 -0
- package/build/graphql/queries/FingerprintQuery.js +61 -0
- package/build/graphql/types/Fingerprint.js +18 -0
- package/build/project/ios/exemptEncryption.d.ts +7 -0
- package/build/project/ios/exemptEncryption.js +80 -0
- package/build/submit/ios/AppProduce.js +12 -23
- package/build/utils/fingerprintCli.d.ts +2 -1
- package/build/utils/fingerprintCli.js +11 -3
- package/oclif.manifest.json +60 -4
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -69,6 +69,7 @@ eas --help COMMAND
|
|
|
69
69
|
* [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
|
|
70
70
|
* [`eas build:configure`](#eas-buildconfigure)
|
|
71
71
|
* [`eas build:delete [BUILD_ID]`](#eas-builddelete-build_id)
|
|
72
|
+
* [`eas build:dev`](#eas-builddev)
|
|
72
73
|
* [`eas build:inspect`](#eas-buildinspect)
|
|
73
74
|
* [`eas build:list`](#eas-buildlist)
|
|
74
75
|
* [`eas build:resign`](#eas-buildresign)
|
|
@@ -105,6 +106,7 @@ eas --help COMMAND
|
|
|
105
106
|
* [`eas env:pull [ENVIRONMENT]`](#eas-envpull-environment)
|
|
106
107
|
* [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
|
|
107
108
|
* [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
|
|
109
|
+
* [`eas fingerprint:compare [HASH1] [HASH2]`](#eas-fingerprintcompare-hash1-hash2)
|
|
108
110
|
* [`eas help [COMMAND]`](#eas-help-command)
|
|
109
111
|
* [`eas init`](#eas-init)
|
|
110
112
|
* [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
|
|
@@ -158,7 +160,7 @@ ALIASES
|
|
|
158
160
|
$ eas login
|
|
159
161
|
```
|
|
160
162
|
|
|
161
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
163
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
162
164
|
|
|
163
165
|
## `eas account:logout`
|
|
164
166
|
|
|
@@ -175,7 +177,7 @@ ALIASES
|
|
|
175
177
|
$ eas logout
|
|
176
178
|
```
|
|
177
179
|
|
|
178
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
180
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
179
181
|
|
|
180
182
|
## `eas account:view`
|
|
181
183
|
|
|
@@ -192,7 +194,7 @@ ALIASES
|
|
|
192
194
|
$ eas whoami
|
|
193
195
|
```
|
|
194
196
|
|
|
195
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
197
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
196
198
|
|
|
197
199
|
## `eas analytics [STATUS]`
|
|
198
200
|
|
|
@@ -206,7 +208,7 @@ DESCRIPTION
|
|
|
206
208
|
display or change analytics settings
|
|
207
209
|
```
|
|
208
210
|
|
|
209
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
211
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
210
212
|
|
|
211
213
|
## `eas autocomplete [SHELL]`
|
|
212
214
|
|
|
@@ -258,7 +260,7 @@ DESCRIPTION
|
|
|
258
260
|
create a branch
|
|
259
261
|
```
|
|
260
262
|
|
|
261
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
263
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
262
264
|
|
|
263
265
|
## `eas branch:delete [NAME]`
|
|
264
266
|
|
|
@@ -279,7 +281,7 @@ DESCRIPTION
|
|
|
279
281
|
delete a branch
|
|
280
282
|
```
|
|
281
283
|
|
|
282
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
284
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
283
285
|
|
|
284
286
|
## `eas branch:list`
|
|
285
287
|
|
|
@@ -299,7 +301,7 @@ DESCRIPTION
|
|
|
299
301
|
list all branches
|
|
300
302
|
```
|
|
301
303
|
|
|
302
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
304
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
303
305
|
|
|
304
306
|
## `eas branch:rename`
|
|
305
307
|
|
|
@@ -319,7 +321,7 @@ DESCRIPTION
|
|
|
319
321
|
rename a branch
|
|
320
322
|
```
|
|
321
323
|
|
|
322
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
323
325
|
|
|
324
326
|
## `eas branch:view [NAME]`
|
|
325
327
|
|
|
@@ -342,7 +344,7 @@ DESCRIPTION
|
|
|
342
344
|
view a branch
|
|
343
345
|
```
|
|
344
346
|
|
|
345
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
347
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
346
348
|
|
|
347
349
|
## `eas build`
|
|
348
350
|
|
|
@@ -379,7 +381,7 @@ DESCRIPTION
|
|
|
379
381
|
start a build
|
|
380
382
|
```
|
|
381
383
|
|
|
382
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
384
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
383
385
|
|
|
384
386
|
## `eas build:cancel [BUILD_ID]`
|
|
385
387
|
|
|
@@ -398,7 +400,7 @@ DESCRIPTION
|
|
|
398
400
|
cancel a build
|
|
399
401
|
```
|
|
400
402
|
|
|
401
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
403
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
402
404
|
|
|
403
405
|
## `eas build:configure`
|
|
404
406
|
|
|
@@ -415,7 +417,7 @@ DESCRIPTION
|
|
|
415
417
|
configure the project to support EAS Build
|
|
416
418
|
```
|
|
417
419
|
|
|
418
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
420
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
419
421
|
|
|
420
422
|
## `eas build:delete [BUILD_ID]`
|
|
421
423
|
|
|
@@ -434,7 +436,27 @@ DESCRIPTION
|
|
|
434
436
|
delete a build
|
|
435
437
|
```
|
|
436
438
|
|
|
437
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
439
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
440
|
+
|
|
441
|
+
## `eas build:dev`
|
|
442
|
+
|
|
443
|
+
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
444
|
+
|
|
445
|
+
```
|
|
446
|
+
USAGE
|
|
447
|
+
$ eas build:dev [-p ios|android] [-e <value>]
|
|
448
|
+
|
|
449
|
+
FLAGS
|
|
450
|
+
-e, --profile=PROFILE_NAME Name of the build profile from eas.json. It must be a profile allowing to create
|
|
451
|
+
emulator/simulator internal distribution dev client builds. The "development-simulator"
|
|
452
|
+
build profile will be selected by default.
|
|
453
|
+
-p, --platform=(ios|android)
|
|
454
|
+
|
|
455
|
+
DESCRIPTION
|
|
456
|
+
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
457
|
+
```
|
|
458
|
+
|
|
459
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/dev.ts)_
|
|
438
460
|
|
|
439
461
|
## `eas build:inspect`
|
|
440
462
|
|
|
@@ -469,7 +491,7 @@ DESCRIPTION
|
|
|
469
491
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
470
492
|
```
|
|
471
493
|
|
|
472
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
494
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
473
495
|
|
|
474
496
|
## `eas build:list`
|
|
475
497
|
|
|
@@ -521,7 +543,7 @@ DESCRIPTION
|
|
|
521
543
|
list all builds for your project
|
|
522
544
|
```
|
|
523
545
|
|
|
524
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
546
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
525
547
|
|
|
526
548
|
## `eas build:resign`
|
|
527
549
|
|
|
@@ -550,7 +572,7 @@ DESCRIPTION
|
|
|
550
572
|
re-sign a build archive
|
|
551
573
|
```
|
|
552
574
|
|
|
553
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
575
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
554
576
|
|
|
555
577
|
## `eas build:run`
|
|
556
578
|
|
|
@@ -576,7 +598,7 @@ DESCRIPTION
|
|
|
576
598
|
run simulator/emulator builds from eas-cli
|
|
577
599
|
```
|
|
578
600
|
|
|
579
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
601
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
580
602
|
|
|
581
603
|
## `eas build:submit`
|
|
582
604
|
|
|
@@ -626,7 +648,7 @@ DESCRIPTION
|
|
|
626
648
|
get the latest version from EAS servers
|
|
627
649
|
```
|
|
628
650
|
|
|
629
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
651
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
630
652
|
|
|
631
653
|
## `eas build:version:set`
|
|
632
654
|
|
|
@@ -645,7 +667,7 @@ DESCRIPTION
|
|
|
645
667
|
update version of an app
|
|
646
668
|
```
|
|
647
669
|
|
|
648
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
670
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
649
671
|
|
|
650
672
|
## `eas build:version:sync`
|
|
651
673
|
|
|
@@ -664,7 +686,7 @@ DESCRIPTION
|
|
|
664
686
|
update a version in native code with a value stored on EAS servers
|
|
665
687
|
```
|
|
666
688
|
|
|
667
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
689
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
668
690
|
|
|
669
691
|
## `eas build:view [BUILD_ID]`
|
|
670
692
|
|
|
@@ -681,7 +703,7 @@ DESCRIPTION
|
|
|
681
703
|
view a build for your project
|
|
682
704
|
```
|
|
683
705
|
|
|
684
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
706
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
685
707
|
|
|
686
708
|
## `eas channel:create [NAME]`
|
|
687
709
|
|
|
@@ -702,7 +724,7 @@ DESCRIPTION
|
|
|
702
724
|
create a channel
|
|
703
725
|
```
|
|
704
726
|
|
|
705
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
727
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
706
728
|
|
|
707
729
|
## `eas channel:edit [NAME]`
|
|
708
730
|
|
|
@@ -724,7 +746,7 @@ DESCRIPTION
|
|
|
724
746
|
point a channel at a new branch
|
|
725
747
|
```
|
|
726
748
|
|
|
727
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
749
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
728
750
|
|
|
729
751
|
## `eas channel:list`
|
|
730
752
|
|
|
@@ -744,7 +766,7 @@ DESCRIPTION
|
|
|
744
766
|
list all channels
|
|
745
767
|
```
|
|
746
768
|
|
|
747
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
769
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
748
770
|
|
|
749
771
|
## `eas channel:pause [NAME]`
|
|
750
772
|
|
|
@@ -766,7 +788,7 @@ DESCRIPTION
|
|
|
766
788
|
pause a channel to stop it from sending updates
|
|
767
789
|
```
|
|
768
790
|
|
|
769
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
791
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
770
792
|
|
|
771
793
|
## `eas channel:resume [NAME]`
|
|
772
794
|
|
|
@@ -788,7 +810,7 @@ DESCRIPTION
|
|
|
788
810
|
resume a channel to start sending updates
|
|
789
811
|
```
|
|
790
812
|
|
|
791
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
813
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
792
814
|
|
|
793
815
|
## `eas channel:rollout [CHANNEL]`
|
|
794
816
|
|
|
@@ -821,7 +843,7 @@ DESCRIPTION
|
|
|
821
843
|
Roll a new branch out on a channel incrementally.
|
|
822
844
|
```
|
|
823
845
|
|
|
824
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
846
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
825
847
|
|
|
826
848
|
## `eas channel:view [NAME]`
|
|
827
849
|
|
|
@@ -844,7 +866,7 @@ DESCRIPTION
|
|
|
844
866
|
view a channel
|
|
845
867
|
```
|
|
846
868
|
|
|
847
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
869
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
848
870
|
|
|
849
871
|
## `eas config`
|
|
850
872
|
|
|
@@ -865,7 +887,7 @@ DESCRIPTION
|
|
|
865
887
|
display project configuration (app.json + eas.json)
|
|
866
888
|
```
|
|
867
889
|
|
|
868
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
890
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/config.ts)_
|
|
869
891
|
|
|
870
892
|
## `eas credentials`
|
|
871
893
|
|
|
@@ -882,7 +904,7 @@ DESCRIPTION
|
|
|
882
904
|
manage credentials
|
|
883
905
|
```
|
|
884
906
|
|
|
885
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
907
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
886
908
|
|
|
887
909
|
## `eas credentials:configure-build`
|
|
888
910
|
|
|
@@ -900,7 +922,7 @@ DESCRIPTION
|
|
|
900
922
|
Set up credentials for building your project.
|
|
901
923
|
```
|
|
902
924
|
|
|
903
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
925
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
904
926
|
|
|
905
927
|
## `eas deploy [2m[options][22m`
|
|
906
928
|
|
|
@@ -928,7 +950,7 @@ ALIASES
|
|
|
928
950
|
$ eas worker:deploy
|
|
929
951
|
```
|
|
930
952
|
|
|
931
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
953
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
932
954
|
|
|
933
955
|
## `eas deploy:alias`
|
|
934
956
|
|
|
@@ -953,7 +975,7 @@ ALIASES
|
|
|
953
975
|
$ eas deploy:promote
|
|
954
976
|
```
|
|
955
977
|
|
|
956
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
978
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
957
979
|
|
|
958
980
|
## `eas deploy:promote`
|
|
959
981
|
|
|
@@ -990,7 +1012,7 @@ DESCRIPTION
|
|
|
990
1012
|
register new Apple Devices to use for internal distribution
|
|
991
1013
|
```
|
|
992
1014
|
|
|
993
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
994
1016
|
|
|
995
1017
|
## `eas device:delete`
|
|
996
1018
|
|
|
@@ -1010,7 +1032,7 @@ DESCRIPTION
|
|
|
1010
1032
|
remove a registered device from your account
|
|
1011
1033
|
```
|
|
1012
1034
|
|
|
1013
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1035
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1014
1036
|
|
|
1015
1037
|
## `eas device:list`
|
|
1016
1038
|
|
|
@@ -1031,7 +1053,7 @@ DESCRIPTION
|
|
|
1031
1053
|
list all registered devices for your account
|
|
1032
1054
|
```
|
|
1033
1055
|
|
|
1034
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1056
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
1035
1057
|
|
|
1036
1058
|
## `eas device:rename`
|
|
1037
1059
|
|
|
@@ -1052,7 +1074,7 @@ DESCRIPTION
|
|
|
1052
1074
|
rename a registered device
|
|
1053
1075
|
```
|
|
1054
1076
|
|
|
1055
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1077
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1056
1078
|
|
|
1057
1079
|
## `eas device:view [UDID]`
|
|
1058
1080
|
|
|
@@ -1066,7 +1088,7 @@ DESCRIPTION
|
|
|
1066
1088
|
view a device for your project
|
|
1067
1089
|
```
|
|
1068
1090
|
|
|
1069
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1091
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
1070
1092
|
|
|
1071
1093
|
## `eas diagnostics`
|
|
1072
1094
|
|
|
@@ -1080,7 +1102,7 @@ DESCRIPTION
|
|
|
1080
1102
|
display environment info
|
|
1081
1103
|
```
|
|
1082
1104
|
|
|
1083
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1105
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1084
1106
|
|
|
1085
1107
|
## `eas env:create [ENVIRONMENT]`
|
|
1086
1108
|
|
|
@@ -1109,7 +1131,7 @@ DESCRIPTION
|
|
|
1109
1131
|
create an environment variable for the current project or account
|
|
1110
1132
|
```
|
|
1111
1133
|
|
|
1112
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1134
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1113
1135
|
|
|
1114
1136
|
## `eas env:delete [ENVIRONMENT]`
|
|
1115
1137
|
|
|
@@ -1133,7 +1155,7 @@ DESCRIPTION
|
|
|
1133
1155
|
delete an environment variable for the current project or account
|
|
1134
1156
|
```
|
|
1135
1157
|
|
|
1136
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1158
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1137
1159
|
|
|
1138
1160
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1139
1161
|
|
|
@@ -1154,7 +1176,7 @@ DESCRIPTION
|
|
|
1154
1176
|
execute a command with environment variables from the selected environment
|
|
1155
1177
|
```
|
|
1156
1178
|
|
|
1157
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1179
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1158
1180
|
|
|
1159
1181
|
## `eas env:get [ENVIRONMENT]`
|
|
1160
1182
|
|
|
@@ -1179,7 +1201,7 @@ DESCRIPTION
|
|
|
1179
1201
|
view an environment variable for the current project or account
|
|
1180
1202
|
```
|
|
1181
1203
|
|
|
1182
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1204
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1183
1205
|
|
|
1184
1206
|
## `eas env:list [ENVIRONMENT]`
|
|
1185
1207
|
|
|
@@ -1204,7 +1226,7 @@ DESCRIPTION
|
|
|
1204
1226
|
list environment variables for the current project or account
|
|
1205
1227
|
```
|
|
1206
1228
|
|
|
1207
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1229
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1208
1230
|
|
|
1209
1231
|
## `eas env:pull [ENVIRONMENT]`
|
|
1210
1232
|
|
|
@@ -1227,7 +1249,7 @@ DESCRIPTION
|
|
|
1227
1249
|
pull environment variables for the selected environment to .env file
|
|
1228
1250
|
```
|
|
1229
1251
|
|
|
1230
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1252
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1231
1253
|
|
|
1232
1254
|
## `eas env:push [ENVIRONMENT]`
|
|
1233
1255
|
|
|
@@ -1248,7 +1270,7 @@ DESCRIPTION
|
|
|
1248
1270
|
push environment variables from .env file to the selected environment
|
|
1249
1271
|
```
|
|
1250
1272
|
|
|
1251
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1273
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1252
1274
|
|
|
1253
1275
|
## `eas env:update [ENVIRONMENT]`
|
|
1254
1276
|
|
|
@@ -1279,7 +1301,39 @@ DESCRIPTION
|
|
|
1279
1301
|
update an environment variable on the current project or account
|
|
1280
1302
|
```
|
|
1281
1303
|
|
|
1282
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1304
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
1305
|
+
|
|
1306
|
+
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1307
|
+
|
|
1308
|
+
compare fingerprints of the current project, builds and updates
|
|
1309
|
+
|
|
1310
|
+
```
|
|
1311
|
+
USAGE
|
|
1312
|
+
$ eas fingerprint:compare [HASH1] [HASH2] [--build-id <value>] [--json --non-interactive]
|
|
1313
|
+
|
|
1314
|
+
ARGUMENTS
|
|
1315
|
+
HASH1 If provided alone, HASH1 is compared against the current project's fingerprint.
|
|
1316
|
+
HASH2 If two hashes are provided, HASH1 is compared against HASH2.
|
|
1317
|
+
|
|
1318
|
+
FLAGS
|
|
1319
|
+
--build-id=<value> Compare the fingerprint with the build with the specified ID
|
|
1320
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1321
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1322
|
+
|
|
1323
|
+
DESCRIPTION
|
|
1324
|
+
compare fingerprints of the current project, builds and updates
|
|
1325
|
+
|
|
1326
|
+
EXAMPLES
|
|
1327
|
+
$ eas fingerprint:compare # Compare fingerprints in interactive mode
|
|
1328
|
+
|
|
1329
|
+
$ eas fingerprint:compare c71a7d475aa6f75291bc93cd74aef395c3c94eee # Compare fingerprint against local directory
|
|
1330
|
+
|
|
1331
|
+
$ eas fingerprint:compare c71a7d475aa6f75291bc93cd74aef395c3c94eee f0d6a916e73f401d428e6e006e07b12453317ba2 # Compare provided fingerprints
|
|
1332
|
+
|
|
1333
|
+
$ eas fingerprint:compare --build-id 82bc6456-611a-48cb-8db4-5f9eb2ca1003 # Compare fingerprint from build against local directory
|
|
1334
|
+
```
|
|
1335
|
+
|
|
1336
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1283
1337
|
|
|
1284
1338
|
## `eas help [COMMAND]`
|
|
1285
1339
|
|
|
@@ -1387,7 +1441,7 @@ DESCRIPTION
|
|
|
1387
1441
|
validate the local store configuration
|
|
1388
1442
|
```
|
|
1389
1443
|
|
|
1390
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1444
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1391
1445
|
|
|
1392
1446
|
## `eas metadata:pull`
|
|
1393
1447
|
|
|
@@ -1404,7 +1458,7 @@ DESCRIPTION
|
|
|
1404
1458
|
generate the local store configuration from the app stores
|
|
1405
1459
|
```
|
|
1406
1460
|
|
|
1407
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1461
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1408
1462
|
|
|
1409
1463
|
## `eas metadata:push`
|
|
1410
1464
|
|
|
@@ -1421,7 +1475,7 @@ DESCRIPTION
|
|
|
1421
1475
|
sync the local store configuration to the app stores
|
|
1422
1476
|
```
|
|
1423
1477
|
|
|
1424
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1478
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1425
1479
|
|
|
1426
1480
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1427
1481
|
|
|
@@ -1451,7 +1505,7 @@ DESCRIPTION
|
|
|
1451
1505
|
open the project page in a web browser
|
|
1452
1506
|
```
|
|
1453
1507
|
|
|
1454
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1508
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/open.ts)_
|
|
1455
1509
|
|
|
1456
1510
|
## `eas project:info`
|
|
1457
1511
|
|
|
@@ -1465,7 +1519,7 @@ DESCRIPTION
|
|
|
1465
1519
|
information about the current project
|
|
1466
1520
|
```
|
|
1467
1521
|
|
|
1468
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1522
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1469
1523
|
|
|
1470
1524
|
## `eas project:init`
|
|
1471
1525
|
|
|
@@ -1488,7 +1542,7 @@ ALIASES
|
|
|
1488
1542
|
$ eas init
|
|
1489
1543
|
```
|
|
1490
1544
|
|
|
1491
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1545
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1492
1546
|
|
|
1493
1547
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1494
1548
|
|
|
@@ -1506,7 +1560,7 @@ ALIASES
|
|
|
1506
1560
|
$ eas onboarding
|
|
1507
1561
|
```
|
|
1508
1562
|
|
|
1509
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1563
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1510
1564
|
|
|
1511
1565
|
## `eas submit`
|
|
1512
1566
|
|
|
@@ -1537,7 +1591,7 @@ ALIASES
|
|
|
1537
1591
|
$ eas build:submit
|
|
1538
1592
|
```
|
|
1539
1593
|
|
|
1540
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1594
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1541
1595
|
|
|
1542
1596
|
## `eas update`
|
|
1543
1597
|
|
|
@@ -1579,7 +1633,7 @@ DESCRIPTION
|
|
|
1579
1633
|
publish an update group
|
|
1580
1634
|
```
|
|
1581
1635
|
|
|
1582
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1636
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1583
1637
|
|
|
1584
1638
|
## `eas update:configure`
|
|
1585
1639
|
|
|
@@ -1599,7 +1653,7 @@ DESCRIPTION
|
|
|
1599
1653
|
configure the project to support EAS Update
|
|
1600
1654
|
```
|
|
1601
1655
|
|
|
1602
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1656
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1603
1657
|
|
|
1604
1658
|
## `eas update:delete GROUPID`
|
|
1605
1659
|
|
|
@@ -1620,7 +1674,7 @@ DESCRIPTION
|
|
|
1620
1674
|
delete all the updates in an update group
|
|
1621
1675
|
```
|
|
1622
1676
|
|
|
1623
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1677
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1624
1678
|
|
|
1625
1679
|
## `eas update:edit [GROUPID]`
|
|
1626
1680
|
|
|
@@ -1644,7 +1698,7 @@ DESCRIPTION
|
|
|
1644
1698
|
edit all the updates in an update group
|
|
1645
1699
|
```
|
|
1646
1700
|
|
|
1647
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1701
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1648
1702
|
|
|
1649
1703
|
## `eas update:list`
|
|
1650
1704
|
|
|
@@ -1666,7 +1720,7 @@ DESCRIPTION
|
|
|
1666
1720
|
view the recent updates
|
|
1667
1721
|
```
|
|
1668
1722
|
|
|
1669
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1723
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1670
1724
|
|
|
1671
1725
|
## `eas update:republish`
|
|
1672
1726
|
|
|
@@ -1698,7 +1752,7 @@ DESCRIPTION
|
|
|
1698
1752
|
roll back to an existing update
|
|
1699
1753
|
```
|
|
1700
1754
|
|
|
1701
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1755
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1702
1756
|
|
|
1703
1757
|
## `eas update:roll-back-to-embedded`
|
|
1704
1758
|
|
|
@@ -1726,7 +1780,7 @@ DESCRIPTION
|
|
|
1726
1780
|
roll back to the embedded update
|
|
1727
1781
|
```
|
|
1728
1782
|
|
|
1729
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1783
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1730
1784
|
|
|
1731
1785
|
## `eas update:rollback`
|
|
1732
1786
|
|
|
@@ -1746,7 +1800,7 @@ DESCRIPTION
|
|
|
1746
1800
|
roll back to an embedded update or an existing update
|
|
1747
1801
|
```
|
|
1748
1802
|
|
|
1749
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1803
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1750
1804
|
|
|
1751
1805
|
## `eas update:view GROUPID`
|
|
1752
1806
|
|
|
@@ -1766,7 +1820,7 @@ DESCRIPTION
|
|
|
1766
1820
|
update group details
|
|
1767
1821
|
```
|
|
1768
1822
|
|
|
1769
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1823
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1770
1824
|
|
|
1771
1825
|
## `eas webhook:create`
|
|
1772
1826
|
|
|
@@ -1787,7 +1841,7 @@ DESCRIPTION
|
|
|
1787
1841
|
create a webhook
|
|
1788
1842
|
```
|
|
1789
1843
|
|
|
1790
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1844
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1791
1845
|
|
|
1792
1846
|
## `eas webhook:delete [ID]`
|
|
1793
1847
|
|
|
@@ -1807,7 +1861,7 @@ DESCRIPTION
|
|
|
1807
1861
|
delete a webhook
|
|
1808
1862
|
```
|
|
1809
1863
|
|
|
1810
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1864
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1811
1865
|
|
|
1812
1866
|
## `eas webhook:list`
|
|
1813
1867
|
|
|
@@ -1825,7 +1879,7 @@ DESCRIPTION
|
|
|
1825
1879
|
list webhooks
|
|
1826
1880
|
```
|
|
1827
1881
|
|
|
1828
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1882
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1829
1883
|
|
|
1830
1884
|
## `eas webhook:update`
|
|
1831
1885
|
|
|
@@ -1847,7 +1901,7 @@ DESCRIPTION
|
|
|
1847
1901
|
update a webhook
|
|
1848
1902
|
```
|
|
1849
1903
|
|
|
1850
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1904
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1851
1905
|
|
|
1852
1906
|
## `eas webhook:view ID`
|
|
1853
1907
|
|
|
@@ -1864,7 +1918,7 @@ DESCRIPTION
|
|
|
1864
1918
|
view a webhook
|
|
1865
1919
|
```
|
|
1866
1920
|
|
|
1867
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
1921
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1868
1922
|
|
|
1869
1923
|
## `eas whoami`
|
|
1870
1924
|
|
|
@@ -1948,7 +2002,7 @@ DESCRIPTION
|
|
|
1948
2002
|
create a new workflow configuration YAML file
|
|
1949
2003
|
```
|
|
1950
2004
|
|
|
1951
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
2005
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
1952
2006
|
|
|
1953
2007
|
## `eas workflow:run [FILE]`
|
|
1954
2008
|
|
|
@@ -1968,7 +2022,7 @@ DESCRIPTION
|
|
|
1968
2022
|
Run an EAS workflow
|
|
1969
2023
|
```
|
|
1970
2024
|
|
|
1971
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
2025
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
1972
2026
|
|
|
1973
2027
|
## `eas workflow:validate PATH`
|
|
1974
2028
|
|
|
@@ -1988,5 +2042,5 @@ DESCRIPTION
|
|
|
1988
2042
|
validate a workflow configuration yaml file
|
|
1989
2043
|
```
|
|
1990
2044
|
|
|
1991
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.
|
|
2045
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v14.6.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
1992
2046
|
<!-- commandsstop -->
|