eas-cli 16.9.0 → 16.10.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 +97 -78
- package/build/build/android/prepareJob.js +1 -9
- package/build/build/context.d.ts +0 -1
- package/build/build/createContext.d.ts +1 -2
- package/build/build/createContext.js +1 -2
- package/build/build/ios/prepareJob.js +1 -9
- package/build/build/runBuildAndSubmit.d.ts +0 -1
- package/build/build/runBuildAndSubmit.js +0 -1
- package/build/build/types.d.ts +0 -1
- package/build/commandUtils/workflows.d.ts +20 -0
- package/build/commandUtils/workflows.js +21 -0
- package/build/commands/build/dev.js +4 -2
- package/build/commands/build/index.d.ts +0 -1
- package/build/commands/build/index.js +0 -6
- package/build/commands/build/inspect.js +0 -1
- package/build/commands/build/internal.js +0 -1
- package/build/commands/project/onboarding.js +0 -1
- package/build/commands/workflow/cancel.d.ts +13 -0
- package/build/commands/workflow/cancel.js +84 -0
- package/build/commands/workflow/runs.js +2 -17
- package/build/graphql/generated.d.ts +44 -11
- package/build/graphql/generated.js +6 -1
- package/build/graphql/mutations/WorkflowRunMutation.d.ts +3 -0
- package/build/graphql/mutations/WorkflowRunMutation.js +16 -0
- package/build/project/publish.js +0 -3
- package/oclif.manifest.json +23 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -140,6 +140,7 @@ eas --help COMMAND
|
|
|
140
140
|
* [`eas whoami`](#eas-whoami)
|
|
141
141
|
* [`eas worker:alias`](#eas-workeralias)
|
|
142
142
|
* [`eas deploy [2m[options][22m`](#eas-deploy-2moptions22m-1)
|
|
143
|
+
* [`eas workflow:cancel`](#eas-workflowcancel)
|
|
143
144
|
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
144
145
|
* [`eas workflow:list`](#eas-workflowlist)
|
|
145
146
|
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
@@ -164,7 +165,7 @@ ALIASES
|
|
|
164
165
|
$ eas login
|
|
165
166
|
```
|
|
166
167
|
|
|
167
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
168
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/account/login.ts)_
|
|
168
169
|
|
|
169
170
|
## `eas account:logout`
|
|
170
171
|
|
|
@@ -181,7 +182,7 @@ ALIASES
|
|
|
181
182
|
$ eas logout
|
|
182
183
|
```
|
|
183
184
|
|
|
184
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
185
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/account/logout.ts)_
|
|
185
186
|
|
|
186
187
|
## `eas account:view`
|
|
187
188
|
|
|
@@ -198,7 +199,7 @@ ALIASES
|
|
|
198
199
|
$ eas whoami
|
|
199
200
|
```
|
|
200
201
|
|
|
201
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
202
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/account/view.ts)_
|
|
202
203
|
|
|
203
204
|
## `eas analytics [STATUS]`
|
|
204
205
|
|
|
@@ -212,7 +213,7 @@ DESCRIPTION
|
|
|
212
213
|
display or change analytics settings
|
|
213
214
|
```
|
|
214
215
|
|
|
215
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
216
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/analytics.ts)_
|
|
216
217
|
|
|
217
218
|
## `eas autocomplete [SHELL]`
|
|
218
219
|
|
|
@@ -264,7 +265,7 @@ DESCRIPTION
|
|
|
264
265
|
create a branch
|
|
265
266
|
```
|
|
266
267
|
|
|
267
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
268
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/branch/create.ts)_
|
|
268
269
|
|
|
269
270
|
## `eas branch:delete [NAME]`
|
|
270
271
|
|
|
@@ -285,7 +286,7 @@ DESCRIPTION
|
|
|
285
286
|
delete a branch
|
|
286
287
|
```
|
|
287
288
|
|
|
288
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
289
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
289
290
|
|
|
290
291
|
## `eas branch:list`
|
|
291
292
|
|
|
@@ -305,7 +306,7 @@ DESCRIPTION
|
|
|
305
306
|
list all branches
|
|
306
307
|
```
|
|
307
308
|
|
|
308
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
309
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/branch/list.ts)_
|
|
309
310
|
|
|
310
311
|
## `eas branch:rename`
|
|
311
312
|
|
|
@@ -325,7 +326,7 @@ DESCRIPTION
|
|
|
325
326
|
rename a branch
|
|
326
327
|
```
|
|
327
328
|
|
|
328
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
329
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
329
330
|
|
|
330
331
|
## `eas branch:view [NAME]`
|
|
331
332
|
|
|
@@ -348,7 +349,7 @@ DESCRIPTION
|
|
|
348
349
|
view a branch
|
|
349
350
|
```
|
|
350
351
|
|
|
351
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
352
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/branch/view.ts)_
|
|
352
353
|
|
|
353
354
|
## `eas build`
|
|
354
355
|
|
|
@@ -386,7 +387,7 @@ DESCRIPTION
|
|
|
386
387
|
start a build
|
|
387
388
|
```
|
|
388
389
|
|
|
389
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
390
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/index.ts)_
|
|
390
391
|
|
|
391
392
|
## `eas build:cancel [BUILD_ID]`
|
|
392
393
|
|
|
@@ -405,7 +406,7 @@ DESCRIPTION
|
|
|
405
406
|
cancel a build
|
|
406
407
|
```
|
|
407
408
|
|
|
408
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
409
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
409
410
|
|
|
410
411
|
## `eas build:configure`
|
|
411
412
|
|
|
@@ -422,7 +423,7 @@ DESCRIPTION
|
|
|
422
423
|
configure the project to support EAS Build
|
|
423
424
|
```
|
|
424
425
|
|
|
425
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
426
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/configure.ts)_
|
|
426
427
|
|
|
427
428
|
## `eas build:delete [BUILD_ID]`
|
|
428
429
|
|
|
@@ -441,7 +442,7 @@ DESCRIPTION
|
|
|
441
442
|
delete a build
|
|
442
443
|
```
|
|
443
444
|
|
|
444
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
445
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/delete.ts)_
|
|
445
446
|
|
|
446
447
|
## `eas build:dev`
|
|
447
448
|
|
|
@@ -461,7 +462,7 @@ DESCRIPTION
|
|
|
461
462
|
run dev client simulator/emulator build with matching fingerprint or create a new one
|
|
462
463
|
```
|
|
463
464
|
|
|
464
|
-
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
465
|
+
_See code: [packages/eas-cli/src/commands/build/dev.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/dev.ts)_
|
|
465
466
|
|
|
466
467
|
## `eas build:download`
|
|
467
468
|
|
|
@@ -482,7 +483,7 @@ DESCRIPTION
|
|
|
482
483
|
download simulator/emulator builds for a given fingerprint hash
|
|
483
484
|
```
|
|
484
485
|
|
|
485
|
-
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
486
|
+
_See code: [packages/eas-cli/src/commands/build/download.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/download.ts)_
|
|
486
487
|
|
|
487
488
|
## `eas build:inspect`
|
|
488
489
|
|
|
@@ -517,7 +518,7 @@ DESCRIPTION
|
|
|
517
518
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
518
519
|
```
|
|
519
520
|
|
|
520
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
521
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
521
522
|
|
|
522
523
|
## `eas build:list`
|
|
523
524
|
|
|
@@ -569,7 +570,7 @@ DESCRIPTION
|
|
|
569
570
|
list all builds for your project
|
|
570
571
|
```
|
|
571
572
|
|
|
572
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
573
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/list.ts)_
|
|
573
574
|
|
|
574
575
|
## `eas build:resign`
|
|
575
576
|
|
|
@@ -598,7 +599,7 @@ DESCRIPTION
|
|
|
598
599
|
re-sign a build archive
|
|
599
600
|
```
|
|
600
601
|
|
|
601
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
602
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/resign.ts)_
|
|
602
603
|
|
|
603
604
|
## `eas build:run`
|
|
604
605
|
|
|
@@ -624,7 +625,7 @@ DESCRIPTION
|
|
|
624
625
|
run simulator/emulator builds from eas-cli
|
|
625
626
|
```
|
|
626
627
|
|
|
627
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
628
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/run.ts)_
|
|
628
629
|
|
|
629
630
|
## `eas build:submit`
|
|
630
631
|
|
|
@@ -677,7 +678,7 @@ DESCRIPTION
|
|
|
677
678
|
get the latest version from EAS servers
|
|
678
679
|
```
|
|
679
680
|
|
|
680
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
681
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
681
682
|
|
|
682
683
|
## `eas build:version:set`
|
|
683
684
|
|
|
@@ -696,7 +697,7 @@ DESCRIPTION
|
|
|
696
697
|
update version of an app
|
|
697
698
|
```
|
|
698
699
|
|
|
699
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
700
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
700
701
|
|
|
701
702
|
## `eas build:version:sync`
|
|
702
703
|
|
|
@@ -715,7 +716,7 @@ DESCRIPTION
|
|
|
715
716
|
update a version in native code with a value stored on EAS servers
|
|
716
717
|
```
|
|
717
718
|
|
|
718
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
719
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
719
720
|
|
|
720
721
|
## `eas build:view [BUILD_ID]`
|
|
721
722
|
|
|
@@ -732,7 +733,7 @@ DESCRIPTION
|
|
|
732
733
|
view a build for your project
|
|
733
734
|
```
|
|
734
735
|
|
|
735
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
736
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/build/view.ts)_
|
|
736
737
|
|
|
737
738
|
## `eas channel:create [NAME]`
|
|
738
739
|
|
|
@@ -753,7 +754,7 @@ DESCRIPTION
|
|
|
753
754
|
create a channel
|
|
754
755
|
```
|
|
755
756
|
|
|
756
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
757
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/create.ts)_
|
|
757
758
|
|
|
758
759
|
## `eas channel:edit [NAME]`
|
|
759
760
|
|
|
@@ -775,7 +776,7 @@ DESCRIPTION
|
|
|
775
776
|
point a channel at a new branch
|
|
776
777
|
```
|
|
777
778
|
|
|
778
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
779
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
779
780
|
|
|
780
781
|
## `eas channel:list`
|
|
781
782
|
|
|
@@ -795,7 +796,7 @@ DESCRIPTION
|
|
|
795
796
|
list all channels
|
|
796
797
|
```
|
|
797
798
|
|
|
798
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
799
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/list.ts)_
|
|
799
800
|
|
|
800
801
|
## `eas channel:pause [NAME]`
|
|
801
802
|
|
|
@@ -817,7 +818,7 @@ DESCRIPTION
|
|
|
817
818
|
pause a channel to stop it from sending updates
|
|
818
819
|
```
|
|
819
820
|
|
|
820
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
821
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
821
822
|
|
|
822
823
|
## `eas channel:resume [NAME]`
|
|
823
824
|
|
|
@@ -839,7 +840,7 @@ DESCRIPTION
|
|
|
839
840
|
resume a channel to start sending updates
|
|
840
841
|
```
|
|
841
842
|
|
|
842
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
843
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
843
844
|
|
|
844
845
|
## `eas channel:rollout [CHANNEL]`
|
|
845
846
|
|
|
@@ -872,7 +873,7 @@ DESCRIPTION
|
|
|
872
873
|
Roll a new branch out on a channel incrementally.
|
|
873
874
|
```
|
|
874
875
|
|
|
875
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
876
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
876
877
|
|
|
877
878
|
## `eas channel:view [NAME]`
|
|
878
879
|
|
|
@@ -895,7 +896,7 @@ DESCRIPTION
|
|
|
895
896
|
view a channel
|
|
896
897
|
```
|
|
897
898
|
|
|
898
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
899
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/channel/view.ts)_
|
|
899
900
|
|
|
900
901
|
## `eas config`
|
|
901
902
|
|
|
@@ -916,7 +917,7 @@ DESCRIPTION
|
|
|
916
917
|
display project configuration (app.json + eas.json)
|
|
917
918
|
```
|
|
918
919
|
|
|
919
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
920
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/config.ts)_
|
|
920
921
|
|
|
921
922
|
## `eas credentials`
|
|
922
923
|
|
|
@@ -933,7 +934,7 @@ DESCRIPTION
|
|
|
933
934
|
manage credentials
|
|
934
935
|
```
|
|
935
936
|
|
|
936
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
937
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
937
938
|
|
|
938
939
|
## `eas credentials:configure-build`
|
|
939
940
|
|
|
@@ -951,7 +952,7 @@ DESCRIPTION
|
|
|
951
952
|
Set up credentials for building your project.
|
|
952
953
|
```
|
|
953
954
|
|
|
954
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
955
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
955
956
|
|
|
956
957
|
## `eas deploy [2m[options][22m`
|
|
957
958
|
|
|
@@ -979,7 +980,7 @@ ALIASES
|
|
|
979
980
|
$ eas worker:deploy
|
|
980
981
|
```
|
|
981
982
|
|
|
982
|
-
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
983
|
+
_See code: [packages/eas-cli/src/commands/deploy/index.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/deploy/index.ts)_
|
|
983
984
|
|
|
984
985
|
## `eas deploy:alias`
|
|
985
986
|
|
|
@@ -1004,7 +1005,7 @@ ALIASES
|
|
|
1004
1005
|
$ eas deploy:promote
|
|
1005
1006
|
```
|
|
1006
1007
|
|
|
1007
|
-
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1008
|
+
_See code: [packages/eas-cli/src/commands/deploy/alias.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/deploy/alias.ts)_
|
|
1008
1009
|
|
|
1009
1010
|
## `eas deploy:promote`
|
|
1010
1011
|
|
|
@@ -1041,7 +1042,7 @@ DESCRIPTION
|
|
|
1041
1042
|
register new Apple Devices to use for internal distribution
|
|
1042
1043
|
```
|
|
1043
1044
|
|
|
1044
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1045
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/device/create.ts)_
|
|
1045
1046
|
|
|
1046
1047
|
## `eas device:delete`
|
|
1047
1048
|
|
|
@@ -1061,7 +1062,7 @@ DESCRIPTION
|
|
|
1061
1062
|
remove a registered device from your account
|
|
1062
1063
|
```
|
|
1063
1064
|
|
|
1064
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1065
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/device/delete.ts)_
|
|
1065
1066
|
|
|
1066
1067
|
## `eas device:list`
|
|
1067
1068
|
|
|
@@ -1082,7 +1083,7 @@ DESCRIPTION
|
|
|
1082
1083
|
list all registered devices for your account
|
|
1083
1084
|
```
|
|
1084
1085
|
|
|
1085
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1086
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/device/list.ts)_
|
|
1086
1087
|
|
|
1087
1088
|
## `eas device:rename`
|
|
1088
1089
|
|
|
@@ -1103,7 +1104,7 @@ DESCRIPTION
|
|
|
1103
1104
|
rename a registered device
|
|
1104
1105
|
```
|
|
1105
1106
|
|
|
1106
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1107
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/device/rename.ts)_
|
|
1107
1108
|
|
|
1108
1109
|
## `eas device:view [UDID]`
|
|
1109
1110
|
|
|
@@ -1117,7 +1118,7 @@ DESCRIPTION
|
|
|
1117
1118
|
view a device for your project
|
|
1118
1119
|
```
|
|
1119
1120
|
|
|
1120
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1121
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/device/view.ts)_
|
|
1121
1122
|
|
|
1122
1123
|
## `eas diagnostics`
|
|
1123
1124
|
|
|
@@ -1131,7 +1132,7 @@ DESCRIPTION
|
|
|
1131
1132
|
display environment info
|
|
1132
1133
|
```
|
|
1133
1134
|
|
|
1134
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1135
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1135
1136
|
|
|
1136
1137
|
## `eas env:create [ENVIRONMENT]`
|
|
1137
1138
|
|
|
@@ -1160,7 +1161,7 @@ DESCRIPTION
|
|
|
1160
1161
|
create an environment variable for the current project or account
|
|
1161
1162
|
```
|
|
1162
1163
|
|
|
1163
|
-
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1164
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/create.ts)_
|
|
1164
1165
|
|
|
1165
1166
|
## `eas env:delete [ENVIRONMENT]`
|
|
1166
1167
|
|
|
@@ -1184,7 +1185,7 @@ DESCRIPTION
|
|
|
1184
1185
|
delete an environment variable for the current project or account
|
|
1185
1186
|
```
|
|
1186
1187
|
|
|
1187
|
-
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1188
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1188
1189
|
|
|
1189
1190
|
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1190
1191
|
|
|
@@ -1205,7 +1206,7 @@ DESCRIPTION
|
|
|
1205
1206
|
execute a command with environment variables from the selected environment
|
|
1206
1207
|
```
|
|
1207
1208
|
|
|
1208
|
-
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1209
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1209
1210
|
|
|
1210
1211
|
## `eas env:get [ENVIRONMENT]`
|
|
1211
1212
|
|
|
@@ -1230,7 +1231,7 @@ DESCRIPTION
|
|
|
1230
1231
|
view an environment variable for the current project or account
|
|
1231
1232
|
```
|
|
1232
1233
|
|
|
1233
|
-
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1234
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/get.ts)_
|
|
1234
1235
|
|
|
1235
1236
|
## `eas env:list [ENVIRONMENT]`
|
|
1236
1237
|
|
|
@@ -1255,7 +1256,7 @@ DESCRIPTION
|
|
|
1255
1256
|
list environment variables for the current project or account
|
|
1256
1257
|
```
|
|
1257
1258
|
|
|
1258
|
-
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1259
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/list.ts)_
|
|
1259
1260
|
|
|
1260
1261
|
## `eas env:pull [ENVIRONMENT]`
|
|
1261
1262
|
|
|
@@ -1278,7 +1279,7 @@ DESCRIPTION
|
|
|
1278
1279
|
pull environment variables for the selected environment to .env file
|
|
1279
1280
|
```
|
|
1280
1281
|
|
|
1281
|
-
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1282
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1282
1283
|
|
|
1283
1284
|
## `eas env:push [ENVIRONMENT]`
|
|
1284
1285
|
|
|
@@ -1299,7 +1300,7 @@ DESCRIPTION
|
|
|
1299
1300
|
push environment variables from .env file to the selected environment
|
|
1300
1301
|
```
|
|
1301
1302
|
|
|
1302
|
-
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1303
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/push.ts)_
|
|
1303
1304
|
|
|
1304
1305
|
## `eas env:update [ENVIRONMENT]`
|
|
1305
1306
|
|
|
@@ -1330,7 +1331,7 @@ DESCRIPTION
|
|
|
1330
1331
|
update an environment variable on the current project or account
|
|
1331
1332
|
```
|
|
1332
1333
|
|
|
1333
|
-
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1334
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/env/update.ts)_
|
|
1334
1335
|
|
|
1335
1336
|
## `eas fingerprint:compare [HASH1] [HASH2]`
|
|
1336
1337
|
|
|
@@ -1375,7 +1376,7 @@ EXAMPLES
|
|
|
1375
1376
|
$ eas fingerprint:compare <FINGERPRINT-HASH> --update-id <UPDATE-ID> # Compare fingerprint from update against provided fingerprint
|
|
1376
1377
|
```
|
|
1377
1378
|
|
|
1378
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1379
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/compare.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/fingerprint/compare.ts)_
|
|
1379
1380
|
|
|
1380
1381
|
## `eas fingerprint:generate`
|
|
1381
1382
|
|
|
@@ -1406,7 +1407,7 @@ EXAMPLES
|
|
|
1406
1407
|
$ eas fingerprint:generate --json --non-interactive --platform android # Output fingerprint json to stdout
|
|
1407
1408
|
```
|
|
1408
1409
|
|
|
1409
|
-
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1410
|
+
_See code: [packages/eas-cli/src/commands/fingerprint/generate.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/fingerprint/generate.ts)_
|
|
1410
1411
|
|
|
1411
1412
|
## `eas help [COMMAND]`
|
|
1412
1413
|
|
|
@@ -1514,7 +1515,7 @@ DESCRIPTION
|
|
|
1514
1515
|
validate the local store configuration
|
|
1515
1516
|
```
|
|
1516
1517
|
|
|
1517
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1518
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1518
1519
|
|
|
1519
1520
|
## `eas metadata:pull`
|
|
1520
1521
|
|
|
@@ -1531,7 +1532,7 @@ DESCRIPTION
|
|
|
1531
1532
|
generate the local store configuration from the app stores
|
|
1532
1533
|
```
|
|
1533
1534
|
|
|
1534
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1535
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1535
1536
|
|
|
1536
1537
|
## `eas metadata:push`
|
|
1537
1538
|
|
|
@@ -1548,7 +1549,7 @@ DESCRIPTION
|
|
|
1548
1549
|
sync the local store configuration to the app stores
|
|
1549
1550
|
```
|
|
1550
1551
|
|
|
1551
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1552
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1552
1553
|
|
|
1553
1554
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1554
1555
|
|
|
@@ -1578,7 +1579,7 @@ DESCRIPTION
|
|
|
1578
1579
|
open the project page in a web browser
|
|
1579
1580
|
```
|
|
1580
1581
|
|
|
1581
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1582
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/open.ts)_
|
|
1582
1583
|
|
|
1583
1584
|
## `eas project:info`
|
|
1584
1585
|
|
|
@@ -1592,7 +1593,7 @@ DESCRIPTION
|
|
|
1592
1593
|
information about the current project
|
|
1593
1594
|
```
|
|
1594
1595
|
|
|
1595
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1596
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/project/info.ts)_
|
|
1596
1597
|
|
|
1597
1598
|
## `eas project:init`
|
|
1598
1599
|
|
|
@@ -1615,7 +1616,7 @@ ALIASES
|
|
|
1615
1616
|
$ eas init
|
|
1616
1617
|
```
|
|
1617
1618
|
|
|
1618
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1619
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/project/init.ts)_
|
|
1619
1620
|
|
|
1620
1621
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1621
1622
|
|
|
@@ -1633,7 +1634,7 @@ ALIASES
|
|
|
1633
1634
|
$ eas onboarding
|
|
1634
1635
|
```
|
|
1635
1636
|
|
|
1636
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1637
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1637
1638
|
|
|
1638
1639
|
## `eas submit`
|
|
1639
1640
|
|
|
@@ -1667,7 +1668,7 @@ ALIASES
|
|
|
1667
1668
|
$ eas build:submit
|
|
1668
1669
|
```
|
|
1669
1670
|
|
|
1670
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1671
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/submit.ts)_
|
|
1671
1672
|
|
|
1672
1673
|
## `eas update`
|
|
1673
1674
|
|
|
@@ -1709,7 +1710,7 @@ DESCRIPTION
|
|
|
1709
1710
|
publish an update group
|
|
1710
1711
|
```
|
|
1711
1712
|
|
|
1712
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1713
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/index.ts)_
|
|
1713
1714
|
|
|
1714
1715
|
## `eas update:configure`
|
|
1715
1716
|
|
|
@@ -1729,7 +1730,7 @@ DESCRIPTION
|
|
|
1729
1730
|
configure the project to support EAS Update
|
|
1730
1731
|
```
|
|
1731
1732
|
|
|
1732
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1733
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1733
1734
|
|
|
1734
1735
|
## `eas update:delete GROUPID`
|
|
1735
1736
|
|
|
@@ -1750,7 +1751,7 @@ DESCRIPTION
|
|
|
1750
1751
|
delete all the updates in an update group
|
|
1751
1752
|
```
|
|
1752
1753
|
|
|
1753
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1754
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1754
1755
|
|
|
1755
1756
|
## `eas update:edit [GROUPID]`
|
|
1756
1757
|
|
|
@@ -1774,7 +1775,7 @@ DESCRIPTION
|
|
|
1774
1775
|
edit all the updates in an update group
|
|
1775
1776
|
```
|
|
1776
1777
|
|
|
1777
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1778
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1778
1779
|
|
|
1779
1780
|
## `eas update:list`
|
|
1780
1781
|
|
|
@@ -1796,7 +1797,7 @@ DESCRIPTION
|
|
|
1796
1797
|
view the recent updates
|
|
1797
1798
|
```
|
|
1798
1799
|
|
|
1799
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1800
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/list.ts)_
|
|
1800
1801
|
|
|
1801
1802
|
## `eas update:republish`
|
|
1802
1803
|
|
|
@@ -1832,7 +1833,7 @@ DESCRIPTION
|
|
|
1832
1833
|
roll back to an existing update
|
|
1833
1834
|
```
|
|
1834
1835
|
|
|
1835
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1836
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1836
1837
|
|
|
1837
1838
|
## `eas update:roll-back-to-embedded`
|
|
1838
1839
|
|
|
@@ -1860,7 +1861,7 @@ DESCRIPTION
|
|
|
1860
1861
|
roll back to the embedded update
|
|
1861
1862
|
```
|
|
1862
1863
|
|
|
1863
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1864
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1864
1865
|
|
|
1865
1866
|
## `eas update:rollback`
|
|
1866
1867
|
|
|
@@ -1880,7 +1881,7 @@ DESCRIPTION
|
|
|
1880
1881
|
roll back to an embedded update or an existing update
|
|
1881
1882
|
```
|
|
1882
1883
|
|
|
1883
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1884
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1884
1885
|
|
|
1885
1886
|
## `eas update:view GROUPID`
|
|
1886
1887
|
|
|
@@ -1900,7 +1901,7 @@ DESCRIPTION
|
|
|
1900
1901
|
update group details
|
|
1901
1902
|
```
|
|
1902
1903
|
|
|
1903
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1904
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/update/view.ts)_
|
|
1904
1905
|
|
|
1905
1906
|
## `eas webhook:create`
|
|
1906
1907
|
|
|
@@ -1921,7 +1922,7 @@ DESCRIPTION
|
|
|
1921
1922
|
create a webhook
|
|
1922
1923
|
```
|
|
1923
1924
|
|
|
1924
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1925
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1925
1926
|
|
|
1926
1927
|
## `eas webhook:delete [ID]`
|
|
1927
1928
|
|
|
@@ -1941,7 +1942,7 @@ DESCRIPTION
|
|
|
1941
1942
|
delete a webhook
|
|
1942
1943
|
```
|
|
1943
1944
|
|
|
1944
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1945
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1945
1946
|
|
|
1946
1947
|
## `eas webhook:list`
|
|
1947
1948
|
|
|
@@ -1959,7 +1960,7 @@ DESCRIPTION
|
|
|
1959
1960
|
list webhooks
|
|
1960
1961
|
```
|
|
1961
1962
|
|
|
1962
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1963
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1963
1964
|
|
|
1964
1965
|
## `eas webhook:update`
|
|
1965
1966
|
|
|
@@ -1981,7 +1982,7 @@ DESCRIPTION
|
|
|
1981
1982
|
update a webhook
|
|
1982
1983
|
```
|
|
1983
1984
|
|
|
1984
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
1985
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1985
1986
|
|
|
1986
1987
|
## `eas webhook:view ID`
|
|
1987
1988
|
|
|
@@ -1998,7 +1999,7 @@ DESCRIPTION
|
|
|
1998
1999
|
view a webhook
|
|
1999
2000
|
```
|
|
2000
2001
|
|
|
2001
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2002
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
2002
2003
|
|
|
2003
2004
|
## `eas whoami`
|
|
2004
2005
|
|
|
@@ -2064,6 +2065,24 @@ ALIASES
|
|
|
2064
2065
|
$ eas worker:deploy
|
|
2065
2066
|
```
|
|
2066
2067
|
|
|
2068
|
+
## `eas workflow:cancel`
|
|
2069
|
+
|
|
2070
|
+
Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs to cancel.
|
|
2071
|
+
|
|
2072
|
+
```
|
|
2073
|
+
USAGE
|
|
2074
|
+
$ eas workflow:cancel [--non-interactive]
|
|
2075
|
+
|
|
2076
|
+
FLAGS
|
|
2077
|
+
--non-interactive Run the command in non-interactive mode.
|
|
2078
|
+
|
|
2079
|
+
DESCRIPTION
|
|
2080
|
+
Cancel one or more workflow runs. If no workflow run IDs are provided, you will be prompted to select IN_PROGRESS runs
|
|
2081
|
+
to cancel.
|
|
2082
|
+
```
|
|
2083
|
+
|
|
2084
|
+
_See code: [packages/eas-cli/src/commands/workflow/cancel.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/cancel.ts)_
|
|
2085
|
+
|
|
2067
2086
|
## `eas workflow:create [NAME]`
|
|
2068
2087
|
|
|
2069
2088
|
create a new workflow configuration YAML file
|
|
@@ -2082,7 +2101,7 @@ DESCRIPTION
|
|
|
2082
2101
|
create a new workflow configuration YAML file
|
|
2083
2102
|
```
|
|
2084
2103
|
|
|
2085
|
-
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2104
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
2086
2105
|
|
|
2087
2106
|
## `eas workflow:list`
|
|
2088
2107
|
|
|
@@ -2099,7 +2118,7 @@ DESCRIPTION
|
|
|
2099
2118
|
List workflows for the current project
|
|
2100
2119
|
```
|
|
2101
2120
|
|
|
2102
|
-
_See code: [packages/eas-cli/src/commands/workflow/list.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2121
|
+
_See code: [packages/eas-cli/src/commands/workflow/list.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/list.ts)_
|
|
2103
2122
|
|
|
2104
2123
|
## `eas workflow:run [FILE]`
|
|
2105
2124
|
|
|
@@ -2126,7 +2145,7 @@ FLAG DESCRIPTIONS
|
|
|
2126
2145
|
Exit codes: 0 = success, 11 = failure, 12 = canceled, 13 = wait aborted.
|
|
2127
2146
|
```
|
|
2128
2147
|
|
|
2129
|
-
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2148
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
2130
2149
|
|
|
2131
2150
|
## `eas workflow:runs`
|
|
2132
2151
|
|
|
@@ -2151,7 +2170,7 @@ DESCRIPTION
|
|
|
2151
2170
|
list recent workflow runs for this project, with their IDs, statuses, and timestamps
|
|
2152
2171
|
```
|
|
2153
2172
|
|
|
2154
|
-
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2173
|
+
_See code: [packages/eas-cli/src/commands/workflow/runs.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/runs.ts)_
|
|
2155
2174
|
|
|
2156
2175
|
## `eas workflow:validate PATH`
|
|
2157
2176
|
|
|
@@ -2171,5 +2190,5 @@ DESCRIPTION
|
|
|
2171
2190
|
validate a workflow configuration yaml file
|
|
2172
2191
|
```
|
|
2173
2192
|
|
|
2174
|
-
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.
|
|
2193
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v16.10.1/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
2175
2194
|
<!-- commandsstop -->
|