eas-cli 18.0.4 → 18.0.6
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 +92 -90
- package/build/commandUtils/flags.js +1 -1
- package/build/commands/go.d.ts +23 -0
- package/build/commands/go.js +484 -0
- package/build/commands/update/configure.js +5 -0
- package/build/commands/update/index.js +10 -5
- package/build/credentials/context.d.ts +2 -0
- package/build/credentials/context.js +2 -0
- package/build/credentials/ios/actions/AscApiKeyUtils.js +4 -0
- package/build/credentials/ios/actions/CreateProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/DistributionCertificateUtils.js +1 -1
- package/build/credentials/ios/actions/PushKeyUtils.js +1 -1
- package/build/credentials/ios/actions/SetUpAscApiKey.js +9 -3
- package/build/credentials/ios/actions/SetUpDistributionCertificate.js +4 -3
- package/build/credentials/ios/actions/SetUpProvisioningProfile.js +1 -1
- package/build/credentials/ios/actions/SetUpPushKey.js +8 -3
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +7 -1
- package/build/graphql/mutations/WorkflowRunMutation.js +19 -0
- package/build/log.d.ts +6 -0
- package/build/log.js +8 -0
- package/build/update/utils.d.ts +4 -0
- package/build/update/utils.js +13 -0
- package/oclif.manifest.json +40 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -178,7 +178,7 @@ ALIASES
|
|
|
178
178
|
$ eas login
|
|
179
179
|
```
|
|
180
180
|
|
|
181
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
181
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/account/login.ts)_
|
|
182
182
|
|
|
183
183
|
## `eas account:logout`
|
|
184
184
|
|
|
@@ -195,7 +195,7 @@ ALIASES
|
|
|
195
195
|
$ eas logout
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
198
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/account/logout.ts)_
|
|
199
199
|
|
|
200
200
|
## `eas account:usage [ACCOUNT_NAME]`
|
|
201
201
|
|
|
@@ -217,7 +217,7 @@ DESCRIPTION
|
|
|
217
217
|
view account usage and billing for the current cycle
|
|
218
218
|
```
|
|
219
219
|
|
|
220
|
-
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
220
|
+
_See code: [packages/eas-cli/src/commands/account/usage.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/account/usage.ts)_
|
|
221
221
|
|
|
222
222
|
## `eas account:view`
|
|
223
223
|
|
|
@@ -234,7 +234,7 @@ ALIASES
|
|
|
234
234
|
$ eas whoami
|
|
235
235
|
```
|
|
236
236
|
|
|
237
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
237
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/account/view.ts)_
|
|
238
238
|
|
|
239
239
|
## `eas analytics [STATUS]`
|
|
240
240
|
|
|
@@ -248,7 +248,7 @@ DESCRIPTION
|
|
|
248
248
|
display or change analytics settings
|
|
249
249
|
```
|
|
250
250
|
|
|
251
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
251
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/analytics.ts)_
|
|
252
252
|
|
|
253
253
|
## `eas autocomplete [SHELL]`
|
|
254
254
|
|
|
@@ -300,7 +300,7 @@ DESCRIPTION
|
|
|
300
300
|
create a branch
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
303
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/branch/create.ts)_
|
|
304
304
|
|
|
305
305
|
## `eas branch:delete [NAME]`
|
|
306
306
|
|
|
@@ -321,7 +321,7 @@ DESCRIPTION
|
|
|
321
321
|
delete a branch
|
|
322
322
|
```
|
|
323
323
|
|
|
324
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
324
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
325
325
|
|
|
326
326
|
## `eas branch:list`
|
|
327
327
|
|
|
@@ -341,7 +341,7 @@ DESCRIPTION
|
|
|
341
341
|
list all branches
|
|
342
342
|
```
|
|
343
343
|
|
|
344
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
344
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/branch/list.ts)_
|
|
345
345
|
|
|
346
346
|
## `eas branch:rename`
|
|
347
347
|
|
|
@@ -361,7 +361,7 @@ DESCRIPTION
|
|
|
361
361
|
rename a branch
|
|
362
362
|
```
|
|
363
363
|
|
|
364
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
364
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
365
365
|
|
|
366
366
|
## `eas branch:view [NAME]`
|
|
367
367
|
|
|
@@ -384,7 +384,7 @@ DESCRIPTION
|
|
|
384
384
|
view a branch
|
|
385
385
|
```
|
|
386
386
|
|
|
387
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
387
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/branch/view.ts)_
|
|
388
388
|
|
|
389
389
|
## `eas build`
|
|
390
390
|
|
|
@@ -425,7 +425,7 @@ DESCRIPTION
|
|
|
425
425
|
start a build
|
|
426
426
|
```
|
|
427
427
|
|
|
428
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
428
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/index.ts)_
|
|
429
429
|
|
|
430
430
|
## `eas build:cancel [BUILD_ID]`
|
|
431
431
|
|
|
@@ -444,7 +444,7 @@ DESCRIPTION
|
|
|
444
444
|
cancel a build
|
|
445
445
|
```
|
|
446
446
|
|
|
447
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
447
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
448
448
|
|
|
449
449
|
## `eas build:configure`
|
|
450
450
|
|
|
@@ -461,7 +461,7 @@ DESCRIPTION
|
|
|
461
461
|
configure the project to support EAS Build
|
|
462
462
|
```
|
|
463
463
|
|
|
464
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
464
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/configure.ts)_
|
|
465
465
|
|
|
466
466
|
## `eas build:delete [BUILD_ID]`
|
|
467
467
|
|
|
@@ -480,7 +480,7 @@ DESCRIPTION
|
|
|
480
480
|
delete a build
|
|
481
481
|
```
|
|
482
482
|
|
|
483
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
483
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/delete.ts)_
|
|
484
484
|
|
|
485
485
|
## `eas build:dev`
|
|
486
486
|
|
|
@@ -500,7 +500,7 @@ DESCRIPTION
|
|
|
500
500
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
501
501
|
```
|
|
502
502
|
|
|
503
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
503
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/dev.ts)_
|
|
504
504
|
|
|
505
505
|
## `eas build:download`
|
|
506
506
|
|
|
@@ -521,7 +521,7 @@ DESCRIPTION
|
|
|
521
521
|
download simulator/emulator builds for a given fingerprint hash
|
|
522
522
|
```
|
|
523
523
|
|
|
524
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
524
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/download.ts)_
|
|
525
525
|
|
|
526
526
|
## `eas build:inspect`
|
|
527
527
|
|
|
@@ -556,7 +556,7 @@ DESCRIPTION
|
|
|
556
556
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
557
557
|
```
|
|
558
558
|
|
|
559
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
559
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
560
560
|
|
|
561
561
|
## `eas build:list`
|
|
562
562
|
|
|
@@ -608,7 +608,7 @@ DESCRIPTION
|
|
|
608
608
|
list all builds for your project
|
|
609
609
|
```
|
|
610
610
|
|
|
611
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
611
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/list.ts)_
|
|
612
612
|
|
|
613
613
|
## `eas build:resign`
|
|
614
614
|
|
|
@@ -637,7 +637,7 @@ DESCRIPTION
|
|
|
637
637
|
re-sign a build archive
|
|
638
638
|
```
|
|
639
639
|
|
|
640
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
640
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/resign.ts)_
|
|
641
641
|
|
|
642
642
|
## `eas build:run`
|
|
643
643
|
|
|
@@ -663,7 +663,7 @@ DESCRIPTION
|
|
|
663
663
|
run simulator/emulator builds from eas-cli
|
|
664
664
|
```
|
|
665
665
|
|
|
666
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
666
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/run.ts)_
|
|
667
667
|
|
|
668
668
|
## `eas build:submit`
|
|
669
669
|
|
|
@@ -717,7 +717,7 @@ DESCRIPTION
|
|
|
717
717
|
get the latest version from EAS servers
|
|
718
718
|
```
|
|
719
719
|
|
|
720
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
720
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
721
721
|
|
|
722
722
|
## `eas build:version:set`
|
|
723
723
|
|
|
@@ -736,7 +736,7 @@ DESCRIPTION
|
|
|
736
736
|
update version of an app
|
|
737
737
|
```
|
|
738
738
|
|
|
739
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
739
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
740
740
|
|
|
741
741
|
## `eas build:version:sync`
|
|
742
742
|
|
|
@@ -755,7 +755,7 @@ DESCRIPTION
|
|
|
755
755
|
update a version in native code with a value stored on EAS servers
|
|
756
756
|
```
|
|
757
757
|
|
|
758
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
758
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
759
759
|
|
|
760
760
|
## `eas build:view [BUILD_ID]`
|
|
761
761
|
|
|
@@ -772,7 +772,7 @@ DESCRIPTION
|
|
|
772
772
|
view a build for your project
|
|
773
773
|
```
|
|
774
774
|
|
|
775
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
775
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/build/view.ts)_
|
|
776
776
|
|
|
777
777
|
## `eas channel:create [NAME]`
|
|
778
778
|
|
|
@@ -793,7 +793,7 @@ DESCRIPTION
|
|
|
793
793
|
create a channel
|
|
794
794
|
```
|
|
795
795
|
|
|
796
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
796
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/create.ts)_
|
|
797
797
|
|
|
798
798
|
## `eas channel:delete [NAME]`
|
|
799
799
|
|
|
@@ -814,7 +814,7 @@ DESCRIPTION
|
|
|
814
814
|
Delete a channel
|
|
815
815
|
```
|
|
816
816
|
|
|
817
|
-
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
817
|
+
_See code: [packages/eas-cli/src/commands/channel/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/delete.ts)_
|
|
818
818
|
|
|
819
819
|
## `eas channel:edit [NAME]`
|
|
820
820
|
|
|
@@ -836,7 +836,7 @@ DESCRIPTION
|
|
|
836
836
|
point a channel at a new branch
|
|
837
837
|
```
|
|
838
838
|
|
|
839
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
839
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
840
840
|
|
|
841
841
|
## `eas channel:list`
|
|
842
842
|
|
|
@@ -856,7 +856,7 @@ DESCRIPTION
|
|
|
856
856
|
list all channels
|
|
857
857
|
```
|
|
858
858
|
|
|
859
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
859
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/list.ts)_
|
|
860
860
|
|
|
861
861
|
## `eas channel:pause [NAME]`
|
|
862
862
|
|
|
@@ -878,7 +878,7 @@ DESCRIPTION
|
|
|
878
878
|
pause a channel to stop it from sending updates
|
|
879
879
|
```
|
|
880
880
|
|
|
881
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
881
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
882
882
|
|
|
883
883
|
## `eas channel:resume [NAME]`
|
|
884
884
|
|
|
@@ -900,7 +900,7 @@ DESCRIPTION
|
|
|
900
900
|
resume a channel to start sending updates
|
|
901
901
|
```
|
|
902
902
|
|
|
903
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
903
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
904
904
|
|
|
905
905
|
## `eas channel:rollout [CHANNEL]`
|
|
906
906
|
|
|
@@ -933,7 +933,7 @@ DESCRIPTION
|
|
|
933
933
|
Roll a new branch out on a channel incrementally.
|
|
934
934
|
```
|
|
935
935
|
|
|
936
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
936
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
937
937
|
|
|
938
938
|
## `eas channel:view [NAME]`
|
|
939
939
|
|
|
@@ -956,7 +956,7 @@ DESCRIPTION
|
|
|
956
956
|
view a channel
|
|
957
957
|
```
|
|
958
958
|
|
|
959
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
959
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/channel/view.ts)_
|
|
960
960
|
|
|
961
961
|
## `eas config`
|
|
962
962
|
|
|
@@ -977,7 +977,7 @@ DESCRIPTION
|
|
|
977
977
|
display project configuration (app.json + eas.json)
|
|
978
978
|
```
|
|
979
979
|
|
|
980
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
980
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/config.ts)_
|
|
981
981
|
|
|
982
982
|
## `eas credentials`
|
|
983
983
|
|
|
@@ -994,7 +994,7 @@ DESCRIPTION
|
|
|
994
994
|
manage credentials
|
|
995
995
|
```
|
|
996
996
|
|
|
997
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
997
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
998
998
|
|
|
999
999
|
## `eas credentials:configure-build`
|
|
1000
1000
|
|
|
@@ -1012,7 +1012,7 @@ DESCRIPTION
|
|
|
1012
1012
|
Set up credentials for building your project.
|
|
1013
1013
|
```
|
|
1014
1014
|
|
|
1015
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1015
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
1016
1016
|
|
|
1017
1017
|
## `eas deploy [options]`
|
|
1018
1018
|
|
|
@@ -1040,7 +1040,7 @@ ALIASES
|
|
|
1040
1040
|
$ eas worker:deploy
|
|
1041
1041
|
```
|
|
1042
1042
|
|
|
1043
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1043
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
1044
1044
|
|
|
1045
1045
|
## `eas deploy:alias`
|
|
1046
1046
|
|
|
@@ -1065,7 +1065,7 @@ ALIASES
|
|
|
1065
1065
|
$ eas deploy:promote
|
|
1066
1066
|
```
|
|
1067
1067
|
|
|
1068
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1068
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/index.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/deploy/alias/index.ts)_
|
|
1069
1069
|
|
|
1070
1070
|
## `eas deploy:alias:delete [ALIAS_NAME]`
|
|
1071
1071
|
|
|
@@ -1086,7 +1086,7 @@ ALIASES
|
|
|
1086
1086
|
$ eas worker:alias:delete
|
|
1087
1087
|
```
|
|
1088
1088
|
|
|
1089
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1089
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/deploy/alias/delete.ts)_
|
|
1090
1090
|
|
|
1091
1091
|
## `eas deploy:delete [DEPLOYMENT_ID]`
|
|
1092
1092
|
|
|
@@ -1107,7 +1107,7 @@ ALIASES
|
|
|
1107
1107
|
$ eas worker:delete
|
|
1108
1108
|
```
|
|
1109
1109
|
|
|
1110
|
-
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1110
|
+
_See code: [packages/eas-cli/src/commands/deploy/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/deploy/delete.ts)_
|
|
1111
1111
|
|
|
1112
1112
|
## `eas deploy:promote`
|
|
1113
1113
|
|
|
@@ -1144,7 +1144,7 @@ DESCRIPTION
|
|
|
1144
1144
|
register new Apple Devices to use for internal distribution
|
|
1145
1145
|
```
|
|
1146
1146
|
|
|
1147
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1147
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/device/create.ts)_
|
|
1148
1148
|
|
|
1149
1149
|
## `eas device:delete`
|
|
1150
1150
|
|
|
@@ -1164,7 +1164,7 @@ DESCRIPTION
|
|
|
1164
1164
|
remove a registered device from your account
|
|
1165
1165
|
```
|
|
1166
1166
|
|
|
1167
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1167
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1168
1168
|
|
|
1169
1169
|
## `eas device:list`
|
|
1170
1170
|
|
|
@@ -1185,7 +1185,7 @@ DESCRIPTION
|
|
|
1185
1185
|
list all registered devices for your account
|
|
1186
1186
|
```
|
|
1187
1187
|
|
|
1188
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1188
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/device/list.ts)_
|
|
1189
1189
|
|
|
1190
1190
|
## `eas device:rename`
|
|
1191
1191
|
|
|
@@ -1206,7 +1206,7 @@ DESCRIPTION
|
|
|
1206
1206
|
rename a registered device
|
|
1207
1207
|
```
|
|
1208
1208
|
|
|
1209
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1209
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1210
1210
|
|
|
1211
1211
|
## `eas device:view [UDID]`
|
|
1212
1212
|
|
|
@@ -1220,7 +1220,7 @@ DESCRIPTION
|
|
|
1220
1220
|
view a device for your project
|
|
1221
1221
|
```
|
|
1222
1222
|
|
|
1223
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1223
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/device/view.ts)_
|
|
1224
1224
|
|
|
1225
1225
|
## `eas diagnostics`
|
|
1226
1226
|
|
|
@@ -1234,7 +1234,7 @@ DESCRIPTION
|
|
|
1234
1234
|
display environment info
|
|
1235
1235
|
```
|
|
1236
1236
|
|
|
1237
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1237
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1238
1238
|
|
|
1239
1239
|
## `eas env:create [ENVIRONMENT]`
|
|
1240
1240
|
|
|
@@ -1264,7 +1264,7 @@ DESCRIPTION
|
|
|
1264
1264
|
create an environment variable for the current project or account
|
|
1265
1265
|
```
|
|
1266
1266
|
|
|
1267
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1267
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/create.ts)_
|
|
1268
1268
|
|
|
1269
1269
|
## `eas env:delete [ENVIRONMENT]`
|
|
1270
1270
|
|
|
@@ -1289,7 +1289,7 @@ DESCRIPTION
|
|
|
1289
1289
|
delete an environment variable for the current project or account
|
|
1290
1290
|
```
|
|
1291
1291
|
|
|
1292
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1292
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1293
1293
|
|
|
1294
1294
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1295
1295
|
|
|
@@ -1311,7 +1311,7 @@ DESCRIPTION
|
|
|
1311
1311
|
execute a command with environment variables from the selected environment
|
|
1312
1312
|
```
|
|
1313
1313
|
|
|
1314
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1314
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1315
1315
|
|
|
1316
1316
|
## `eas env:get [ENVIRONMENT]`
|
|
1317
1317
|
|
|
@@ -1336,7 +1336,7 @@ DESCRIPTION
|
|
|
1336
1336
|
view an environment variable for the current project or account
|
|
1337
1337
|
```
|
|
1338
1338
|
|
|
1339
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1339
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/get.ts)_
|
|
1340
1340
|
|
|
1341
1341
|
## `eas env:list [ENVIRONMENT]`
|
|
1342
1342
|
|
|
@@ -1362,7 +1362,7 @@ DESCRIPTION
|
|
|
1362
1362
|
list environment variables for the current project or account
|
|
1363
1363
|
```
|
|
1364
1364
|
|
|
1365
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1365
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/list.ts)_
|
|
1366
1366
|
|
|
1367
1367
|
## `eas env:pull [ENVIRONMENT]`
|
|
1368
1368
|
|
|
@@ -1384,7 +1384,7 @@ DESCRIPTION
|
|
|
1384
1384
|
pull environment variables for the selected environment to .env file
|
|
1385
1385
|
```
|
|
1386
1386
|
|
|
1387
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1387
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1388
1388
|
|
|
1389
1389
|
## `eas env:push [ENVIRONMENT]`
|
|
1390
1390
|
|
|
@@ -1406,7 +1406,7 @@ DESCRIPTION
|
|
|
1406
1406
|
push environment variables from .env file to the selected environment
|
|
1407
1407
|
```
|
|
1408
1408
|
|
|
1409
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1409
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/push.ts)_
|
|
1410
1410
|
|
|
1411
1411
|
## `eas env:update [ENVIRONMENT]`
|
|
1412
1412
|
|
|
@@ -1438,7 +1438,7 @@ DESCRIPTION
|
|
|
1438
1438
|
update an environment variable on the current project or account
|
|
1439
1439
|
```
|
|
1440
1440
|
|
|
1441
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1441
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/env/update.ts)_
|
|
1442
1442
|
|
|
1443
1443
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1444
1444
|
|
|
@@ -1482,7 +1482,7 @@ EXAMPLES
|
|
|
1482
1482
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1483
1483
|
```
|
|
1484
1484
|
|
|
1485
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1485
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1486
1486
|
|
|
1487
1487
|
## `eas fingerprint:generate`
|
|
1488
1488
|
|
|
@@ -1512,7 +1512,7 @@ EXAMPLES
|
|
|
1512
1512
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1513
1513
|
```
|
|
1514
1514
|
|
|
1515
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1515
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1516
1516
|
|
|
1517
1517
|
## `eas help [COMMAND]`
|
|
1518
1518
|
|
|
@@ -1621,7 +1621,7 @@ DESCRIPTION
|
|
|
1621
1621
|
validate the local store configuration
|
|
1622
1622
|
```
|
|
1623
1623
|
|
|
1624
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1624
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1625
1625
|
|
|
1626
1626
|
## `eas metadata:pull`
|
|
1627
1627
|
|
|
@@ -1638,7 +1638,7 @@ DESCRIPTION
|
|
|
1638
1638
|
generate the local store configuration from the app stores
|
|
1639
1639
|
```
|
|
1640
1640
|
|
|
1641
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1641
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1642
1642
|
|
|
1643
1643
|
## `eas metadata:push`
|
|
1644
1644
|
|
|
@@ -1655,7 +1655,7 @@ DESCRIPTION
|
|
|
1655
1655
|
sync the local store configuration to the app stores
|
|
1656
1656
|
```
|
|
1657
1657
|
|
|
1658
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1658
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1659
1659
|
|
|
1660
1660
|
## `eas new [PATH]`
|
|
1661
1661
|
|
|
@@ -1706,7 +1706,7 @@ DESCRIPTION
|
|
|
1706
1706
|
open the project page in a web browser
|
|
1707
1707
|
```
|
|
1708
1708
|
|
|
1709
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1709
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/open.ts)_
|
|
1710
1710
|
|
|
1711
1711
|
## `eas project:info`
|
|
1712
1712
|
|
|
@@ -1720,7 +1720,7 @@ DESCRIPTION
|
|
|
1720
1720
|
information about the current project
|
|
1721
1721
|
```
|
|
1722
1722
|
|
|
1723
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1723
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/project/info.ts)_
|
|
1724
1724
|
|
|
1725
1725
|
## `eas project:init`
|
|
1726
1726
|
|
|
@@ -1743,7 +1743,7 @@ ALIASES
|
|
|
1743
1743
|
$ eas init
|
|
1744
1744
|
```
|
|
1745
1745
|
|
|
1746
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1746
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/project/init.ts)_
|
|
1747
1747
|
|
|
1748
1748
|
## `eas project:new [PATH]`
|
|
1749
1749
|
|
|
@@ -1766,7 +1766,7 @@ ALIASES
|
|
|
1766
1766
|
$ eas new
|
|
1767
1767
|
```
|
|
1768
1768
|
|
|
1769
|
-
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1769
|
+
_See code: [packages/eas-cli/src/commands/project/new.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/project/new.ts)_
|
|
1770
1770
|
|
|
1771
1771
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1772
1772
|
|
|
@@ -1784,7 +1784,7 @@ ALIASES
|
|
|
1784
1784
|
$ eas onboarding
|
|
1785
1785
|
```
|
|
1786
1786
|
|
|
1787
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1787
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1788
1788
|
|
|
1789
1789
|
## `eas submit`
|
|
1790
1790
|
|
|
@@ -1819,7 +1819,7 @@ ALIASES
|
|
|
1819
1819
|
$ eas build:submit
|
|
1820
1820
|
```
|
|
1821
1821
|
|
|
1822
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1822
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/submit.ts)_
|
|
1823
1823
|
|
|
1824
1824
|
## `eas update`
|
|
1825
1825
|
|
|
@@ -1841,7 +1841,8 @@ FLAGS
|
|
|
1841
1841
|
--emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed information about
|
|
1842
1842
|
the generated updates
|
|
1843
1843
|
--environment=<value> Environment to use for the server-side defined EAS environment variables during
|
|
1844
|
-
command execution, e.g. "production", "preview", "development"
|
|
1844
|
+
command execution, e.g. "production", "preview", "development". Required for
|
|
1845
|
+
projects using Expo SDK 55 or greater.
|
|
1845
1846
|
--input-dir=<value> [default: dist] Location of the bundle
|
|
1846
1847
|
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1847
1848
|
--non-interactive Run the command in non-interactive mode.
|
|
@@ -1859,7 +1860,7 @@ DESCRIPTION
|
|
|
1859
1860
|
publish an update group
|
|
1860
1861
|
```
|
|
1861
1862
|
|
|
1862
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1863
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/index.ts)_
|
|
1863
1864
|
|
|
1864
1865
|
## `eas update:configure`
|
|
1865
1866
|
|
|
@@ -1872,14 +1873,15 @@ USAGE
|
|
|
1872
1873
|
FLAGS
|
|
1873
1874
|
-p, --platform=(android|ios|all) [default: all] Platform to configure
|
|
1874
1875
|
--environment=<value> Environment to use for the server-side defined EAS environment variables during
|
|
1875
|
-
command execution, e.g. "production", "preview", "development"
|
|
1876
|
+
command execution, e.g. "production", "preview", "development". Required for
|
|
1877
|
+
projects using Expo SDK 55 or greater.
|
|
1876
1878
|
--non-interactive Run the command in non-interactive mode.
|
|
1877
1879
|
|
|
1878
1880
|
DESCRIPTION
|
|
1879
1881
|
configure the project to support EAS Update
|
|
1880
1882
|
```
|
|
1881
1883
|
|
|
1882
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1884
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1883
1885
|
|
|
1884
1886
|
## `eas update:delete GROUPID`
|
|
1885
1887
|
|
|
@@ -1900,7 +1902,7 @@ DESCRIPTION
|
|
|
1900
1902
|
delete all the updates in an update group
|
|
1901
1903
|
```
|
|
1902
1904
|
|
|
1903
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1905
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1904
1906
|
|
|
1905
1907
|
## `eas update:edit [GROUPID]`
|
|
1906
1908
|
|
|
@@ -1924,7 +1926,7 @@ DESCRIPTION
|
|
|
1924
1926
|
edit all the updates in an update group
|
|
1925
1927
|
```
|
|
1926
1928
|
|
|
1927
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1929
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1928
1930
|
|
|
1929
1931
|
## `eas update:list`
|
|
1930
1932
|
|
|
@@ -1949,7 +1951,7 @@ DESCRIPTION
|
|
|
1949
1951
|
view the recent updates
|
|
1950
1952
|
```
|
|
1951
1953
|
|
|
1952
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1954
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/list.ts)_
|
|
1953
1955
|
|
|
1954
1956
|
## `eas update:republish`
|
|
1955
1957
|
|
|
@@ -1985,7 +1987,7 @@ DESCRIPTION
|
|
|
1985
1987
|
roll back to an existing update
|
|
1986
1988
|
```
|
|
1987
1989
|
|
|
1988
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
1990
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1989
1991
|
|
|
1990
1992
|
## `eas update:revert-update-rollout`
|
|
1991
1993
|
|
|
@@ -2012,7 +2014,7 @@ DESCRIPTION
|
|
|
2012
2014
|
revert a rollout update for a project
|
|
2013
2015
|
```
|
|
2014
2016
|
|
|
2015
|
-
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2017
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
2016
2018
|
|
|
2017
2019
|
## `eas update:roll-back-to-embedded`
|
|
2018
2020
|
|
|
@@ -2040,7 +2042,7 @@ DESCRIPTION
|
|
|
2040
2042
|
roll back to the embedded update
|
|
2041
2043
|
```
|
|
2042
2044
|
|
|
2043
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2045
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
2044
2046
|
|
|
2045
2047
|
## `eas update:rollback`
|
|
2046
2048
|
|
|
@@ -2061,7 +2063,7 @@ DESCRIPTION
|
|
|
2061
2063
|
instead execute "eas update:republish" or "eas update:roll-back-to-embedded".
|
|
2062
2064
|
```
|
|
2063
2065
|
|
|
2064
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2066
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
2065
2067
|
|
|
2066
2068
|
## `eas update:view GROUPID`
|
|
2067
2069
|
|
|
@@ -2081,7 +2083,7 @@ DESCRIPTION
|
|
|
2081
2083
|
update group details
|
|
2082
2084
|
```
|
|
2083
2085
|
|
|
2084
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2086
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/update/view.ts)_
|
|
2085
2087
|
|
|
2086
2088
|
## `eas upload`
|
|
2087
2089
|
|
|
@@ -2102,7 +2104,7 @@ DESCRIPTION
|
|
|
2102
2104
|
upload a local build and generate a sharable link
|
|
2103
2105
|
```
|
|
2104
2106
|
|
|
2105
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2107
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/upload.ts)_
|
|
2106
2108
|
|
|
2107
2109
|
## `eas webhook:create`
|
|
2108
2110
|
|
|
@@ -2123,7 +2125,7 @@ DESCRIPTION
|
|
|
2123
2125
|
create a webhook
|
|
2124
2126
|
```
|
|
2125
2127
|
|
|
2126
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2128
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
2127
2129
|
|
|
2128
2130
|
## `eas webhook:delete [ID]`
|
|
2129
2131
|
|
|
@@ -2143,7 +2145,7 @@ DESCRIPTION
|
|
|
2143
2145
|
delete a webhook
|
|
2144
2146
|
```
|
|
2145
2147
|
|
|
2146
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2148
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
2147
2149
|
|
|
2148
2150
|
## `eas webhook:list`
|
|
2149
2151
|
|
|
@@ -2161,7 +2163,7 @@ DESCRIPTION
|
|
|
2161
2163
|
list webhooks
|
|
2162
2164
|
```
|
|
2163
2165
|
|
|
2164
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2166
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
2165
2167
|
|
|
2166
2168
|
## `eas webhook:update`
|
|
2167
2169
|
|
|
@@ -2183,7 +2185,7 @@ DESCRIPTION
|
|
|
2183
2185
|
update a webhook
|
|
2184
2186
|
```
|
|
2185
2187
|
|
|
2186
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2188
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2187
2189
|
|
|
2188
2190
|
## `eas webhook:view ID`
|
|
2189
2191
|
|
|
@@ -2200,7 +2202,7 @@ DESCRIPTION
|
|
|
2200
2202
|
view a webhook
|
|
2201
2203
|
```
|
|
2202
2204
|
|
|
2203
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2205
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2204
2206
|
|
|
2205
2207
|
## `eas whoami`
|
|
2206
2208
|
|
|
@@ -2320,7 +2322,7 @@ DESCRIPTION
|
|
|
2320
2322
|
to cancel.
|
|
2321
2323
|
```
|
|
2322
2324
|
|
|
2323
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2325
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2324
2326
|
|
|
2325
2327
|
## `eas workflow:create [NAME]`
|
|
2326
2328
|
|
|
@@ -2340,7 +2342,7 @@ DESCRIPTION
|
|
|
2340
2342
|
create a new workflow configuration YAML file
|
|
2341
2343
|
```
|
|
2342
2344
|
|
|
2343
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2345
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2344
2346
|
|
|
2345
2347
|
## `eas workflow:logs [ID]`
|
|
2346
2348
|
|
|
@@ -2364,7 +2366,7 @@ DESCRIPTION
|
|
|
2364
2366
|
If no ID is passed in, you will be prompted to select from recent workflow runs for the current project.
|
|
2365
2367
|
```
|
|
2366
2368
|
|
|
2367
|
-
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2369
|
+
_See code: [packages/eas-cli/src/commands/workflow/logs.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/logs.ts)_
|
|
2368
2370
|
|
|
2369
2371
|
## `eas workflow:run [FILE]`
|
|
2370
2372
|
|
|
@@ -2404,7 +2406,7 @@ FLAG DESCRIPTIONS
|
|
|
2404
2406
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2405
2407
|
```
|
|
2406
2408
|
|
|
2407
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2409
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2408
2410
|
|
|
2409
2411
|
## `eas workflow:runs`
|
|
2410
2412
|
|
|
@@ -2429,7 +2431,7 @@ DESCRIPTION
|
|
|
2429
2431
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2430
2432
|
```
|
|
2431
2433
|
|
|
2432
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2434
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2433
2435
|
|
|
2434
2436
|
## `eas workflow:status [WORKFLOW_RUN_ID]`
|
|
2435
2437
|
|
|
@@ -2457,7 +2459,7 @@ FLAG DESCRIPTIONS
|
|
|
2457
2459
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2458
2460
|
```
|
|
2459
2461
|
|
|
2460
|
-
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2462
|
+
_See code: [packages/eas-cli/src/commands/workflow/status.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/status.ts)_
|
|
2461
2463
|
|
|
2462
2464
|
## `eas workflow:validate PATH`
|
|
2463
2465
|
|
|
@@ -2477,7 +2479,7 @@ DESCRIPTION
|
|
|
2477
2479
|
validate a workflow configuration yaml file
|
|
2478
2480
|
```
|
|
2479
2481
|
|
|
2480
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2482
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2481
2483
|
|
|
2482
2484
|
## `eas workflow:view [ID]`
|
|
2483
2485
|
|
|
@@ -2499,5 +2501,5 @@ DESCRIPTION
|
|
|
2499
2501
|
workflow runs for the current project.
|
|
2500
2502
|
```
|
|
2501
2503
|
|
|
2502
|
-
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.0.
|
|
2504
|
+
_See code: [packages/eas-cli/src/commands/workflow/view.ts](https://github.com/expo/eas-cli/blob/v18.0.6/packages/eas-cli/src/commands/workflow/view.ts)_
|
|
2503
2505
|
<!-- commandsstop -->
|