eas-cli 16.13.4 → 16.14.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 +107 -79
- package/build/commands/env/create.d.ts +0 -1
- package/build/commands/env/create.js +1 -28
- package/build/commands/update/delete.js +2 -20
- package/build/commands/update/republish.js +2 -139
- package/build/commands/update/revert-update-rollout.d.ts +24 -0
- package/build/commands/update/revert-update-rollout.js +264 -0
- package/build/commands/update/roll-back-to-embedded.d.ts +0 -2
- package/build/commands/update/roll-back-to-embedded.js +13 -133
- package/build/credentials/ios/actions/AppleTeamUtils.js +1 -1
- package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.js +1 -1
- package/build/credentials/ios/api/GraphqlClient.d.ts +1 -1
- package/build/credentials/ios/api/GraphqlClient.js +14 -8
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +3 -5
- package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +22 -6
- package/build/devices/manager.js +2 -15
- package/build/graphql/generated.d.ts +107 -137
- package/build/graphql/generated.js +15 -3
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +0 -2
- package/build/graphql/mutations/EnvironmentVariableMutation.js +0 -48
- package/build/graphql/types/Update.js +1 -0
- package/build/project/publish.js +1 -0
- package/build/update/delete.d.ts +5 -0
- package/build/update/delete.js +24 -0
- package/build/update/queries.d.ts +13 -1
- package/build/update/queries.js +62 -1
- package/build/update/republish.d.ts +27 -0
- package/build/update/republish.js +242 -1
- package/build/update/roll-back-to-embedded.d.ts +18 -0
- package/build/update/roll-back-to-embedded.js +119 -0
- package/build/user/fetchUser.js +15 -13
- package/build/utils/statuspageService.js +1 -0
- package/oclif.manifest.json +78 -114
- package/package.json +3 -2
- package/build/commands/env/link.d.ts +0 -23
- package/build/commands/env/link.js +0 -128
- package/build/commands/env/unlink.d.ts +0 -22
- package/build/commands/env/unlink.js +0 -117
package/README.md
CHANGED
|
@@ -129,6 +129,7 @@ eas --help COMMAND
|
|
|
129
129
|
* [`eas update:edit [GROUPID]`](#eas-updateedit-groupid)
|
|
130
130
|
* [`eas update:list`](#eas-updatelist)
|
|
131
131
|
* [`eas update:republish`](#eas-updaterepublish)
|
|
132
|
+
* [`eas update:revert-update-rollout`](#eas-updaterevert-update-rollout)
|
|
132
133
|
* [`eas update:roll-back-to-embedded`](#eas-updateroll-back-to-embedded)
|
|
133
134
|
* [`eas update:rollback`](#eas-updaterollback)
|
|
134
135
|
* [`eas update:view GROUPID`](#eas-updateview-groupid)
|
|
@@ -165,7 +166,7 @@ ALIASES
|
|
|
165
166
|
$ eas login
|
|
166
167
|
```
|
|
167
168
|
|
|
168
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
169
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
169
170
|
|
|
170
171
|
## `eas account:logout`
|
|
171
172
|
|
|
@@ -182,7 +183,7 @@ ALIASES
|
|
|
182
183
|
$ eas logout
|
|
183
184
|
```
|
|
184
185
|
|
|
185
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
186
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
186
187
|
|
|
187
188
|
## `eas account:view`
|
|
188
189
|
|
|
@@ -199,7 +200,7 @@ ALIASES
|
|
|
199
200
|
$ eas whoami
|
|
200
201
|
```
|
|
201
202
|
|
|
202
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
203
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
203
204
|
|
|
204
205
|
## `eas analytics [STATUS]`
|
|
205
206
|
|
|
@@ -213,7 +214,7 @@ DESCRIPTION
|
|
|
213
214
|
display or change analytics settings
|
|
214
215
|
```
|
|
215
216
|
|
|
216
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
217
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
217
218
|
|
|
218
219
|
## `eas autocomplete [SHELL]`
|
|
219
220
|
|
|
@@ -265,7 +266,7 @@ DESCRIPTION
|
|
|
265
266
|
create a branch
|
|
266
267
|
```
|
|
267
268
|
|
|
268
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
269
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
269
270
|
|
|
270
271
|
## `eas branch:delete [NAME]`
|
|
271
272
|
|
|
@@ -286,7 +287,7 @@ DESCRIPTION
|
|
|
286
287
|
delete a branch
|
|
287
288
|
```
|
|
288
289
|
|
|
289
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
290
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
290
291
|
|
|
291
292
|
## `eas branch:list`
|
|
292
293
|
|
|
@@ -306,7 +307,7 @@ DESCRIPTION
|
|
|
306
307
|
list all branches
|
|
307
308
|
```
|
|
308
309
|
|
|
309
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
310
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
310
311
|
|
|
311
312
|
## `eas branch:rename`
|
|
312
313
|
|
|
@@ -326,7 +327,7 @@ DESCRIPTION
|
|
|
326
327
|
rename a branch
|
|
327
328
|
```
|
|
328
329
|
|
|
329
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
330
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
330
331
|
|
|
331
332
|
## `eas branch:view [NAME]`
|
|
332
333
|
|
|
@@ -349,7 +350,7 @@ DESCRIPTION
|
|
|
349
350
|
view a branch
|
|
350
351
|
```
|
|
351
352
|
|
|
352
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
353
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
353
354
|
|
|
354
355
|
## `eas build`
|
|
355
356
|
|
|
@@ -390,7 +391,7 @@ DESCRIPTION
|
|
|
390
391
|
start a build
|
|
391
392
|
```
|
|
392
393
|
|
|
393
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
394
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
394
395
|
|
|
395
396
|
## `eas build:cancel [BUILD_ID]`
|
|
396
397
|
|
|
@@ -409,7 +410,7 @@ DESCRIPTION
|
|
|
409
410
|
cancel a build
|
|
410
411
|
```
|
|
411
412
|
|
|
412
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
413
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
413
414
|
|
|
414
415
|
## `eas build:configure`
|
|
415
416
|
|
|
@@ -426,7 +427,7 @@ DESCRIPTION
|
|
|
426
427
|
configure the project to support EAS Build
|
|
427
428
|
```
|
|
428
429
|
|
|
429
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
430
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
430
431
|
|
|
431
432
|
## `eas build:delete [BUILD_ID]`
|
|
432
433
|
|
|
@@ -445,7 +446,7 @@ DESCRIPTION
|
|
|
445
446
|
delete a build
|
|
446
447
|
```
|
|
447
448
|
|
|
448
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
449
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
449
450
|
|
|
450
451
|
## `eas build:dev`
|
|
451
452
|
|
|
@@ -465,7 +466,7 @@ DESCRIPTION
|
|
|
465
466
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
466
467
|
```
|
|
467
468
|
|
|
468
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
469
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
469
470
|
|
|
470
471
|
## `eas build:download`
|
|
471
472
|
|
|
@@ -486,7 +487,7 @@ DESCRIPTION
|
|
|
486
487
|
download simulator/emulator builds for a given fingerprint hash
|
|
487
488
|
```
|
|
488
489
|
|
|
489
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
490
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/download.ts)_
|
|
490
491
|
|
|
491
492
|
## `eas build:inspect`
|
|
492
493
|
|
|
@@ -521,7 +522,7 @@ DESCRIPTION
|
|
|
521
522
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
522
523
|
```
|
|
523
524
|
|
|
524
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
525
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
525
526
|
|
|
526
527
|
## `eas build:list`
|
|
527
528
|
|
|
@@ -573,7 +574,7 @@ DESCRIPTION
|
|
|
573
574
|
list all builds for your project
|
|
574
575
|
```
|
|
575
576
|
|
|
576
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
577
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
577
578
|
|
|
578
579
|
## `eas build:resign`
|
|
579
580
|
|
|
@@ -602,7 +603,7 @@ DESCRIPTION
|
|
|
602
603
|
re-sign a build archive
|
|
603
604
|
```
|
|
604
605
|
|
|
605
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
606
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
606
607
|
|
|
607
608
|
## `eas build:run`
|
|
608
609
|
|
|
@@ -628,7 +629,7 @@ DESCRIPTION
|
|
|
628
629
|
run simulator/emulator builds from eas-cli
|
|
629
630
|
```
|
|
630
631
|
|
|
631
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
632
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
632
633
|
|
|
633
634
|
## `eas build:submit`
|
|
634
635
|
|
|
@@ -682,7 +683,7 @@ DESCRIPTION
|
|
|
682
683
|
get the latest version from EAS servers
|
|
683
684
|
```
|
|
684
685
|
|
|
685
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
686
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
686
687
|
|
|
687
688
|
## `eas build:version:set`
|
|
688
689
|
|
|
@@ -701,7 +702,7 @@ DESCRIPTION
|
|
|
701
702
|
update version of an app
|
|
702
703
|
```
|
|
703
704
|
|
|
704
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
705
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
705
706
|
|
|
706
707
|
## `eas build:version:sync`
|
|
707
708
|
|
|
@@ -720,7 +721,7 @@ DESCRIPTION
|
|
|
720
721
|
update a version in native code with a value stored on EAS servers
|
|
721
722
|
```
|
|
722
723
|
|
|
723
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
724
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
724
725
|
|
|
725
726
|
## `eas build:view [BUILD_ID]`
|
|
726
727
|
|
|
@@ -737,7 +738,7 @@ DESCRIPTION
|
|
|
737
738
|
view a build for your project
|
|
738
739
|
```
|
|
739
740
|
|
|
740
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
741
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
741
742
|
|
|
742
743
|
## `eas channel:create [NAME]`
|
|
743
744
|
|
|
@@ -758,7 +759,7 @@ DESCRIPTION
|
|
|
758
759
|
create a channel
|
|
759
760
|
```
|
|
760
761
|
|
|
761
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
762
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
762
763
|
|
|
763
764
|
## `eas channel:edit [NAME]`
|
|
764
765
|
|
|
@@ -780,7 +781,7 @@ DESCRIPTION
|
|
|
780
781
|
point a channel at a new branch
|
|
781
782
|
```
|
|
782
783
|
|
|
783
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
784
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
784
785
|
|
|
785
786
|
## `eas channel:list`
|
|
786
787
|
|
|
@@ -800,7 +801,7 @@ DESCRIPTION
|
|
|
800
801
|
list all channels
|
|
801
802
|
```
|
|
802
803
|
|
|
803
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
804
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
804
805
|
|
|
805
806
|
## `eas channel:pause [NAME]`
|
|
806
807
|
|
|
@@ -822,7 +823,7 @@ DESCRIPTION
|
|
|
822
823
|
pause a channel to stop it from sending updates
|
|
823
824
|
```
|
|
824
825
|
|
|
825
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
826
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
826
827
|
|
|
827
828
|
## `eas channel:resume [NAME]`
|
|
828
829
|
|
|
@@ -844,7 +845,7 @@ DESCRIPTION
|
|
|
844
845
|
resume a channel to start sending updates
|
|
845
846
|
```
|
|
846
847
|
|
|
847
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
848
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
848
849
|
|
|
849
850
|
## `eas channel:rollout [CHANNEL]`
|
|
850
851
|
|
|
@@ -877,7 +878,7 @@ DESCRIPTION
|
|
|
877
878
|
Roll a new branch out on a channel incrementally.
|
|
878
879
|
```
|
|
879
880
|
|
|
880
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
881
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
881
882
|
|
|
882
883
|
## `eas channel:view [NAME]`
|
|
883
884
|
|
|
@@ -900,7 +901,7 @@ DESCRIPTION
|
|
|
900
901
|
view a channel
|
|
901
902
|
```
|
|
902
903
|
|
|
903
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
904
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
904
905
|
|
|
905
906
|
## `eas config`
|
|
906
907
|
|
|
@@ -921,7 +922,7 @@ DESCRIPTION
|
|
|
921
922
|
display project configuration (app.json + eas.json)
|
|
922
923
|
```
|
|
923
924
|
|
|
924
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
925
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/config.ts)_
|
|
925
926
|
|
|
926
927
|
## `eas credentials`
|
|
927
928
|
|
|
@@ -938,7 +939,7 @@ DESCRIPTION
|
|
|
938
939
|
manage credentials
|
|
939
940
|
```
|
|
940
941
|
|
|
941
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
942
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
942
943
|
|
|
943
944
|
## `eas credentials:configure-build`
|
|
944
945
|
|
|
@@ -956,7 +957,7 @@ DESCRIPTION
|
|
|
956
957
|
Set up credentials for building your project.
|
|
957
958
|
```
|
|
958
959
|
|
|
959
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
960
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
960
961
|
|
|
961
962
|
## `eas deploy [2m[options][22m`
|
|
962
963
|
|
|
@@ -984,7 +985,7 @@ ALIASES
|
|
|
984
985
|
$ eas worker:deploy
|
|
985
986
|
```
|
|
986
987
|
|
|
987
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
988
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
988
989
|
|
|
989
990
|
## `eas deploy:alias`
|
|
990
991
|
|
|
@@ -1009,7 +1010,7 @@ ALIASES
|
|
|
1009
1010
|
$ eas deploy:promote
|
|
1010
1011
|
```
|
|
1011
1012
|
|
|
1012
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1013
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
1013
1014
|
|
|
1014
1015
|
## `eas deploy:promote`
|
|
1015
1016
|
|
|
@@ -1046,7 +1047,7 @@ DESCRIPTION
|
|
|
1046
1047
|
register new Apple Devices to use for internal distribution
|
|
1047
1048
|
```
|
|
1048
1049
|
|
|
1049
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1050
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1050
1051
|
|
|
1051
1052
|
## `eas device:delete`
|
|
1052
1053
|
|
|
@@ -1066,7 +1067,7 @@ DESCRIPTION
|
|
|
1066
1067
|
remove a registered device from your account
|
|
1067
1068
|
```
|
|
1068
1069
|
|
|
1069
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1070
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1070
1071
|
|
|
1071
1072
|
## `eas device:list`
|
|
1072
1073
|
|
|
@@ -1087,7 +1088,7 @@ DESCRIPTION
|
|
|
1087
1088
|
list all registered devices for your account
|
|
1088
1089
|
```
|
|
1089
1090
|
|
|
1090
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1091
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1091
1092
|
|
|
1092
1093
|
## `eas device:rename`
|
|
1093
1094
|
|
|
@@ -1108,7 +1109,7 @@ DESCRIPTION
|
|
|
1108
1109
|
rename a registered device
|
|
1109
1110
|
```
|
|
1110
1111
|
|
|
1111
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1112
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1112
1113
|
|
|
1113
1114
|
## `eas device:view [UDID]`
|
|
1114
1115
|
|
|
@@ -1122,7 +1123,7 @@ DESCRIPTION
|
|
|
1122
1123
|
view a device for your project
|
|
1123
1124
|
```
|
|
1124
1125
|
|
|
1125
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1126
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1126
1127
|
|
|
1127
1128
|
## `eas diagnostics`
|
|
1128
1129
|
|
|
@@ -1136,7 +1137,7 @@ DESCRIPTION
|
|
|
1136
1137
|
display environment info
|
|
1137
1138
|
```
|
|
1138
1139
|
|
|
1139
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1140
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1140
1141
|
|
|
1141
1142
|
## `eas env:create [ENVIRONMENT]`
|
|
1142
1143
|
|
|
@@ -1165,7 +1166,7 @@ DESCRIPTION
|
|
|
1165
1166
|
create an environment variable for the current project or account
|
|
1166
1167
|
```
|
|
1167
1168
|
|
|
1168
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1169
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1169
1170
|
|
|
1170
1171
|
## `eas env:delete [ENVIRONMENT]`
|
|
1171
1172
|
|
|
@@ -1189,7 +1190,7 @@ DESCRIPTION
|
|
|
1189
1190
|
delete an environment variable for the current project or account
|
|
1190
1191
|
```
|
|
1191
1192
|
|
|
1192
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1193
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1193
1194
|
|
|
1194
1195
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1195
1196
|
|
|
@@ -1210,7 +1211,7 @@ DESCRIPTION
|
|
|
1210
1211
|
execute a command with environment variables from the selected environment
|
|
1211
1212
|
```
|
|
1212
1213
|
|
|
1213
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1214
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1214
1215
|
|
|
1215
1216
|
## `eas env:get [ENVIRONMENT]`
|
|
1216
1217
|
|
|
@@ -1235,7 +1236,7 @@ DESCRIPTION
|
|
|
1235
1236
|
view an environment variable for the current project or account
|
|
1236
1237
|
```
|
|
1237
1238
|
|
|
1238
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1239
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1239
1240
|
|
|
1240
1241
|
## `eas env:list [ENVIRONMENT]`
|
|
1241
1242
|
|
|
@@ -1260,7 +1261,7 @@ DESCRIPTION
|
|
|
1260
1261
|
list environment variables for the current project or account
|
|
1261
1262
|
```
|
|
1262
1263
|
|
|
1263
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1264
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1264
1265
|
|
|
1265
1266
|
## `eas env:pull [ENVIRONMENT]`
|
|
1266
1267
|
|
|
@@ -1283,7 +1284,7 @@ DESCRIPTION
|
|
|
1283
1284
|
pull environment variables for the selected environment to .env file
|
|
1284
1285
|
```
|
|
1285
1286
|
|
|
1286
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1287
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1287
1288
|
|
|
1288
1289
|
## `eas env:push [ENVIRONMENT]`
|
|
1289
1290
|
|
|
@@ -1304,7 +1305,7 @@ DESCRIPTION
|
|
|
1304
1305
|
push environment variables from .env file to the selected environment
|
|
1305
1306
|
```
|
|
1306
1307
|
|
|
1307
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1308
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1308
1309
|
|
|
1309
1310
|
## `eas env:update [ENVIRONMENT]`
|
|
1310
1311
|
|
|
@@ -1335,7 +1336,7 @@ DESCRIPTION
|
|
|
1335
1336
|
update an environment variable on the current project or account
|
|
1336
1337
|
```
|
|
1337
1338
|
|
|
1338
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1339
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1339
1340
|
|
|
1340
1341
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1341
1342
|
|
|
@@ -1380,7 +1381,7 @@ EXAMPLES
|
|
|
1380
1381
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1381
1382
|
```
|
|
1382
1383
|
|
|
1383
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1384
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1384
1385
|
|
|
1385
1386
|
## `eas fingerprint:generate`
|
|
1386
1387
|
|
|
@@ -1411,7 +1412,7 @@ EXAMPLES
|
|
|
1411
1412
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1412
1413
|
```
|
|
1413
1414
|
|
|
1414
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1415
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1415
1416
|
|
|
1416
1417
|
## `eas help [COMMAND]`
|
|
1417
1418
|
|
|
@@ -1519,7 +1520,7 @@ DESCRIPTION
|
|
|
1519
1520
|
validate the local store configuration
|
|
1520
1521
|
```
|
|
1521
1522
|
|
|
1522
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1523
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1523
1524
|
|
|
1524
1525
|
## `eas metadata:pull`
|
|
1525
1526
|
|
|
@@ -1536,7 +1537,7 @@ DESCRIPTION
|
|
|
1536
1537
|
generate the local store configuration from the app stores
|
|
1537
1538
|
```
|
|
1538
1539
|
|
|
1539
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1540
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1540
1541
|
|
|
1541
1542
|
## `eas metadata:push`
|
|
1542
1543
|
|
|
@@ -1553,7 +1554,7 @@ DESCRIPTION
|
|
|
1553
1554
|
sync the local store configuration to the app stores
|
|
1554
1555
|
```
|
|
1555
1556
|
|
|
1556
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1557
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1557
1558
|
|
|
1558
1559
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1559
1560
|
|
|
@@ -1583,7 +1584,7 @@ DESCRIPTION
|
|
|
1583
1584
|
open the project page in a web browser
|
|
1584
1585
|
```
|
|
1585
1586
|
|
|
1586
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1587
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/open.ts)_
|
|
1587
1588
|
|
|
1588
1589
|
## `eas project:info`
|
|
1589
1590
|
|
|
@@ -1597,7 +1598,7 @@ DESCRIPTION
|
|
|
1597
1598
|
information about the current project
|
|
1598
1599
|
```
|
|
1599
1600
|
|
|
1600
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1601
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1601
1602
|
|
|
1602
1603
|
## `eas project:init`
|
|
1603
1604
|
|
|
@@ -1620,7 +1621,7 @@ ALIASES
|
|
|
1620
1621
|
$ eas init
|
|
1621
1622
|
```
|
|
1622
1623
|
|
|
1623
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1624
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1624
1625
|
|
|
1625
1626
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1626
1627
|
|
|
@@ -1638,7 +1639,7 @@ ALIASES
|
|
|
1638
1639
|
$ eas onboarding
|
|
1639
1640
|
```
|
|
1640
1641
|
|
|
1641
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1642
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1642
1643
|
|
|
1643
1644
|
## `eas submit`
|
|
1644
1645
|
|
|
@@ -1673,7 +1674,7 @@ ALIASES
|
|
|
1673
1674
|
$ eas build:submit
|
|
1674
1675
|
```
|
|
1675
1676
|
|
|
1676
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1677
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1677
1678
|
|
|
1678
1679
|
## `eas update`
|
|
1679
1680
|
|
|
@@ -1715,7 +1716,7 @@ DESCRIPTION
|
|
|
1715
1716
|
publish an update group
|
|
1716
1717
|
```
|
|
1717
1718
|
|
|
1718
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1719
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1719
1720
|
|
|
1720
1721
|
## `eas update:configure`
|
|
1721
1722
|
|
|
@@ -1735,7 +1736,7 @@ DESCRIPTION
|
|
|
1735
1736
|
configure the project to support EAS Update
|
|
1736
1737
|
```
|
|
1737
1738
|
|
|
1738
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1739
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1739
1740
|
|
|
1740
1741
|
## `eas update:delete GROUPID`
|
|
1741
1742
|
|
|
@@ -1756,7 +1757,7 @@ DESCRIPTION
|
|
|
1756
1757
|
delete all the updates in an update group
|
|
1757
1758
|
```
|
|
1758
1759
|
|
|
1759
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1760
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1760
1761
|
|
|
1761
1762
|
## `eas update:edit [GROUPID]`
|
|
1762
1763
|
|
|
@@ -1780,7 +1781,7 @@ DESCRIPTION
|
|
|
1780
1781
|
edit all the updates in an update group
|
|
1781
1782
|
```
|
|
1782
1783
|
|
|
1783
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1784
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1784
1785
|
|
|
1785
1786
|
## `eas update:list`
|
|
1786
1787
|
|
|
@@ -1802,7 +1803,7 @@ DESCRIPTION
|
|
|
1802
1803
|
view the recent updates
|
|
1803
1804
|
```
|
|
1804
1805
|
|
|
1805
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1806
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1806
1807
|
|
|
1807
1808
|
## `eas update:republish`
|
|
1808
1809
|
|
|
@@ -1838,7 +1839,34 @@ DESCRIPTION
|
|
|
1838
1839
|
roll back to an existing update
|
|
1839
1840
|
```
|
|
1840
1841
|
|
|
1841
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1842
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1843
|
+
|
|
1844
|
+
## `eas update:revert-update-rollout`
|
|
1845
|
+
|
|
1846
|
+
revert a rollout update for a project
|
|
1847
|
+
|
|
1848
|
+
```
|
|
1849
|
+
USAGE
|
|
1850
|
+
$ eas update:revert-update-rollout [--channel <value> | --branch <value> | --group <value>] [-m <value>] [--private-key-path
|
|
1851
|
+
<value>] [--json --non-interactive]
|
|
1852
|
+
|
|
1853
|
+
FLAGS
|
|
1854
|
+
-m, --message=<value> Short message describing the revert
|
|
1855
|
+
--branch=<value> Branch name to select an update group to revert the rollout update from
|
|
1856
|
+
--channel=<value> Channel name to select an update group to revert the rollout update from
|
|
1857
|
+
--group=<value> Rollout update group ID to revert
|
|
1858
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1859
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1860
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
|
|
1861
|
+
expo-updates' configuration. Defaults to a file named "private-key.pem" in the
|
|
1862
|
+
certificate's directory. Only relevant if you are using code signing:
|
|
1863
|
+
https://docs.expo.dev/eas-update/code-signing/
|
|
1864
|
+
|
|
1865
|
+
DESCRIPTION
|
|
1866
|
+
revert a rollout update for a project
|
|
1867
|
+
```
|
|
1868
|
+
|
|
1869
|
+
_See code: [packages/eas-cli/src/commands/update/revert-update-rollout.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/revert-update-rollout.ts)_
|
|
1842
1870
|
|
|
1843
1871
|
## `eas update:roll-back-to-embedded`
|
|
1844
1872
|
|
|
@@ -1866,7 +1894,7 @@ DESCRIPTION
|
|
|
1866
1894
|
roll back to the embedded update
|
|
1867
1895
|
```
|
|
1868
1896
|
|
|
1869
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1897
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1870
1898
|
|
|
1871
1899
|
## `eas update:rollback`
|
|
1872
1900
|
|
|
@@ -1886,7 +1914,7 @@ DESCRIPTION
|
|
|
1886
1914
|
roll back to an embedded update or an existing update
|
|
1887
1915
|
```
|
|
1888
1916
|
|
|
1889
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1917
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1890
1918
|
|
|
1891
1919
|
## `eas update:view GROUPID`
|
|
1892
1920
|
|
|
@@ -1906,7 +1934,7 @@ DESCRIPTION
|
|
|
1906
1934
|
update group details
|
|
1907
1935
|
```
|
|
1908
1936
|
|
|
1909
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1937
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1910
1938
|
|
|
1911
1939
|
## `eas upload`
|
|
1912
1940
|
|
|
@@ -1927,7 +1955,7 @@ DESCRIPTION
|
|
|
1927
1955
|
upload a local build and generate a sharable link
|
|
1928
1956
|
```
|
|
1929
1957
|
|
|
1930
|
-
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1958
|
+
_See code: [packages/eas-cli/src/commands/upload.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/upload.ts)_
|
|
1931
1959
|
|
|
1932
1960
|
## `eas webhook:create`
|
|
1933
1961
|
|
|
@@ -1948,7 +1976,7 @@ DESCRIPTION
|
|
|
1948
1976
|
create a webhook
|
|
1949
1977
|
```
|
|
1950
1978
|
|
|
1951
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1979
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1952
1980
|
|
|
1953
1981
|
## `eas webhook:delete [ID]`
|
|
1954
1982
|
|
|
@@ -1968,7 +1996,7 @@ DESCRIPTION
|
|
|
1968
1996
|
delete a webhook
|
|
1969
1997
|
```
|
|
1970
1998
|
|
|
1971
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1999
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1972
2000
|
|
|
1973
2001
|
## `eas webhook:list`
|
|
1974
2002
|
|
|
@@ -1986,7 +2014,7 @@ DESCRIPTION
|
|
|
1986
2014
|
list webhooks
|
|
1987
2015
|
```
|
|
1988
2016
|
|
|
1989
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2017
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1990
2018
|
|
|
1991
2019
|
## `eas webhook:update`
|
|
1992
2020
|
|
|
@@ -2008,7 +2036,7 @@ DESCRIPTION
|
|
|
2008
2036
|
update a webhook
|
|
2009
2037
|
```
|
|
2010
2038
|
|
|
2011
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2039
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
2012
2040
|
|
|
2013
2041
|
## `eas webhook:view ID`
|
|
2014
2042
|
|
|
@@ -2025,7 +2053,7 @@ DESCRIPTION
|
|
|
2025
2053
|
view a webhook
|
|
2026
2054
|
```
|
|
2027
2055
|
|
|
2028
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2056
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2029
2057
|
|
|
2030
2058
|
## `eas whoami`
|
|
2031
2059
|
|
|
@@ -2107,7 +2135,7 @@ DESCRIPTION
|
|
|
2107
2135
|
to cancel.
|
|
2108
2136
|
```
|
|
2109
2137
|
|
|
2110
|
-
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2138
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2111
2139
|
|
|
2112
2140
|
## `eas workflow:create [NAME]`
|
|
2113
2141
|
|
|
@@ -2127,7 +2155,7 @@ DESCRIPTION
|
|
|
2127
2155
|
create a new workflow configuration YAML file
|
|
2128
2156
|
```
|
|
2129
2157
|
|
|
2130
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2158
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2131
2159
|
|
|
2132
2160
|
## `eas workflow:run [FILE]`
|
|
2133
2161
|
|
|
@@ -2154,7 +2182,7 @@ FLAG DESCRIPTIONS
|
|
|
2154
2182
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2155
2183
|
```
|
|
2156
2184
|
|
|
2157
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2185
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2158
2186
|
|
|
2159
2187
|
## `eas workflow:runs`
|
|
2160
2188
|
|
|
@@ -2179,7 +2207,7 @@ DESCRIPTION
|
|
|
2179
2207
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2180
2208
|
```
|
|
2181
2209
|
|
|
2182
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2210
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2183
2211
|
|
|
2184
2212
|
## `eas workflow:validate PATH`
|
|
2185
2213
|
|
|
@@ -2199,5 +2227,5 @@ DESCRIPTION
|
|
|
2199
2227
|
validate a workflow configuration yaml file
|
|
2200
2228
|
```
|
|
2201
2229
|
|
|
2202
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2230
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.14.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2203
2231
|
<!-- commandsstop -->
|