eas-cli 13.2.3 → 13.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +126 -63
- package/build/build/utils/url.d.ts +1 -0
- package/build/build/utils/url.js +5 -1
- package/build/commands/workflow/create.d.ts +18 -0
- package/build/commands/workflow/create.js +100 -0
- package/build/commands/workflow/run.d.ts +0 -2
- package/build/commands/workflow/run.js +25 -6
- package/build/commands/workflow/validate.d.ts +9 -1
- package/build/commands/workflow/validate.js +47 -50
- package/build/graphql/generated.d.ts +59 -2
- package/build/graphql/generated.js +8 -1
- package/build/graphql/mutations/WorkflowRevisionMutation.d.ts +33 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.js +32 -0
- package/build/utils/workflowFile.d.ts +16 -0
- package/build/utils/workflowFile.js +64 -0
- package/oclif.manifest.json +42 -5
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -127,6 +127,9 @@ eas --help COMMAND
|
|
|
127
127
|
* [`eas webhook:update`](#eas-webhookupdate)
|
|
128
128
|
* [`eas webhook:view ID`](#eas-webhookview-id)
|
|
129
129
|
* [`eas whoami`](#eas-whoami)
|
|
130
|
+
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
131
|
+
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
132
|
+
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
130
133
|
|
|
131
134
|
## `eas account:login`
|
|
132
135
|
|
|
@@ -146,7 +149,7 @@ ALIASES
|
|
|
146
149
|
$ eas login
|
|
147
150
|
```
|
|
148
151
|
|
|
149
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
152
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
150
153
|
|
|
151
154
|
## `eas account:logout`
|
|
152
155
|
|
|
@@ -163,7 +166,7 @@ ALIASES
|
|
|
163
166
|
$ eas logout
|
|
164
167
|
```
|
|
165
168
|
|
|
166
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
169
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
167
170
|
|
|
168
171
|
## `eas account:view`
|
|
169
172
|
|
|
@@ -180,7 +183,7 @@ ALIASES
|
|
|
180
183
|
$ eas whoami
|
|
181
184
|
```
|
|
182
185
|
|
|
183
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
186
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
184
187
|
|
|
185
188
|
## `eas analytics [STATUS]`
|
|
186
189
|
|
|
@@ -194,7 +197,7 @@ DESCRIPTION
|
|
|
194
197
|
display or change analytics settings
|
|
195
198
|
```
|
|
196
199
|
|
|
197
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
200
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
198
201
|
|
|
199
202
|
## `eas autocomplete [SHELL]`
|
|
200
203
|
|
|
@@ -246,7 +249,7 @@ DESCRIPTION
|
|
|
246
249
|
create a branch
|
|
247
250
|
```
|
|
248
251
|
|
|
249
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
252
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
250
253
|
|
|
251
254
|
## `eas branch:delete [NAME]`
|
|
252
255
|
|
|
@@ -267,7 +270,7 @@ DESCRIPTION
|
|
|
267
270
|
delete a branch
|
|
268
271
|
```
|
|
269
272
|
|
|
270
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
273
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
271
274
|
|
|
272
275
|
## `eas branch:list`
|
|
273
276
|
|
|
@@ -287,7 +290,7 @@ DESCRIPTION
|
|
|
287
290
|
list all branches
|
|
288
291
|
```
|
|
289
292
|
|
|
290
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
293
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
291
294
|
|
|
292
295
|
## `eas branch:rename`
|
|
293
296
|
|
|
@@ -307,7 +310,7 @@ DESCRIPTION
|
|
|
307
310
|
rename a branch
|
|
308
311
|
```
|
|
309
312
|
|
|
310
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
313
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
311
314
|
|
|
312
315
|
## `eas branch:view [NAME]`
|
|
313
316
|
|
|
@@ -330,7 +333,7 @@ DESCRIPTION
|
|
|
330
333
|
view a branch
|
|
331
334
|
```
|
|
332
335
|
|
|
333
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
336
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
334
337
|
|
|
335
338
|
## `eas build`
|
|
336
339
|
|
|
@@ -367,7 +370,7 @@ DESCRIPTION
|
|
|
367
370
|
start a build
|
|
368
371
|
```
|
|
369
372
|
|
|
370
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
373
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
371
374
|
|
|
372
375
|
## `eas build:cancel [BUILD_ID]`
|
|
373
376
|
|
|
@@ -386,7 +389,7 @@ DESCRIPTION
|
|
|
386
389
|
cancel a build
|
|
387
390
|
```
|
|
388
391
|
|
|
389
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
392
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
390
393
|
|
|
391
394
|
## `eas build:configure`
|
|
392
395
|
|
|
@@ -403,7 +406,7 @@ DESCRIPTION
|
|
|
403
406
|
configure the project to support EAS Build
|
|
404
407
|
```
|
|
405
408
|
|
|
406
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
409
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
407
410
|
|
|
408
411
|
## `eas build:delete [BUILD_ID]`
|
|
409
412
|
|
|
@@ -422,7 +425,7 @@ DESCRIPTION
|
|
|
422
425
|
delete a build
|
|
423
426
|
```
|
|
424
427
|
|
|
425
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
428
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
426
429
|
|
|
427
430
|
## `eas build:inspect`
|
|
428
431
|
|
|
@@ -457,7 +460,7 @@ DESCRIPTION
|
|
|
457
460
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
458
461
|
```
|
|
459
462
|
|
|
460
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
463
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
461
464
|
|
|
462
465
|
## `eas build:list`
|
|
463
466
|
|
|
@@ -507,7 +510,7 @@ DESCRIPTION
|
|
|
507
510
|
list all builds for your project
|
|
508
511
|
```
|
|
509
512
|
|
|
510
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
513
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
511
514
|
|
|
512
515
|
## `eas build:resign`
|
|
513
516
|
|
|
@@ -536,7 +539,7 @@ DESCRIPTION
|
|
|
536
539
|
re-sign a build archive
|
|
537
540
|
```
|
|
538
541
|
|
|
539
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
542
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
540
543
|
|
|
541
544
|
## `eas build:run`
|
|
542
545
|
|
|
@@ -562,7 +565,7 @@ DESCRIPTION
|
|
|
562
565
|
run simulator/emulator builds from eas-cli
|
|
563
566
|
```
|
|
564
567
|
|
|
565
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
568
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
566
569
|
|
|
567
570
|
## `eas build:submit`
|
|
568
571
|
|
|
@@ -612,7 +615,7 @@ DESCRIPTION
|
|
|
612
615
|
get the latest version from EAS servers
|
|
613
616
|
```
|
|
614
617
|
|
|
615
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
618
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
616
619
|
|
|
617
620
|
## `eas build:version:set`
|
|
618
621
|
|
|
@@ -631,7 +634,7 @@ DESCRIPTION
|
|
|
631
634
|
update version of an app
|
|
632
635
|
```
|
|
633
636
|
|
|
634
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
637
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
635
638
|
|
|
636
639
|
## `eas build:version:sync`
|
|
637
640
|
|
|
@@ -650,7 +653,7 @@ DESCRIPTION
|
|
|
650
653
|
update a version in native code with a value stored on EAS servers
|
|
651
654
|
```
|
|
652
655
|
|
|
653
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
656
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
654
657
|
|
|
655
658
|
## `eas build:view [BUILD_ID]`
|
|
656
659
|
|
|
@@ -667,7 +670,7 @@ DESCRIPTION
|
|
|
667
670
|
view a build for your project
|
|
668
671
|
```
|
|
669
672
|
|
|
670
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
673
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
671
674
|
|
|
672
675
|
## `eas channel:create [NAME]`
|
|
673
676
|
|
|
@@ -688,7 +691,7 @@ DESCRIPTION
|
|
|
688
691
|
create a channel
|
|
689
692
|
```
|
|
690
693
|
|
|
691
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
694
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
692
695
|
|
|
693
696
|
## `eas channel:edit [NAME]`
|
|
694
697
|
|
|
@@ -710,7 +713,7 @@ DESCRIPTION
|
|
|
710
713
|
point a channel at a new branch
|
|
711
714
|
```
|
|
712
715
|
|
|
713
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
716
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
714
717
|
|
|
715
718
|
## `eas channel:list`
|
|
716
719
|
|
|
@@ -730,7 +733,7 @@ DESCRIPTION
|
|
|
730
733
|
list all channels
|
|
731
734
|
```
|
|
732
735
|
|
|
733
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
736
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
734
737
|
|
|
735
738
|
## `eas channel:pause [NAME]`
|
|
736
739
|
|
|
@@ -752,7 +755,7 @@ DESCRIPTION
|
|
|
752
755
|
pause a channel to stop it from sending updates
|
|
753
756
|
```
|
|
754
757
|
|
|
755
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
758
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
756
759
|
|
|
757
760
|
## `eas channel:resume [NAME]`
|
|
758
761
|
|
|
@@ -774,7 +777,7 @@ DESCRIPTION
|
|
|
774
777
|
resume a channel to start sending updates
|
|
775
778
|
```
|
|
776
779
|
|
|
777
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
780
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
778
781
|
|
|
779
782
|
## `eas channel:rollout [CHANNEL]`
|
|
780
783
|
|
|
@@ -807,7 +810,7 @@ DESCRIPTION
|
|
|
807
810
|
Roll a new branch out on a channel incrementally.
|
|
808
811
|
```
|
|
809
812
|
|
|
810
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
813
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
811
814
|
|
|
812
815
|
## `eas channel:view [NAME]`
|
|
813
816
|
|
|
@@ -830,7 +833,7 @@ DESCRIPTION
|
|
|
830
833
|
view a channel
|
|
831
834
|
```
|
|
832
835
|
|
|
833
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
836
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
834
837
|
|
|
835
838
|
## `eas config`
|
|
836
839
|
|
|
@@ -851,7 +854,7 @@ DESCRIPTION
|
|
|
851
854
|
display project configuration (app.json + eas.json)
|
|
852
855
|
```
|
|
853
856
|
|
|
854
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
857
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/config.ts)_
|
|
855
858
|
|
|
856
859
|
## `eas credentials`
|
|
857
860
|
|
|
@@ -868,7 +871,7 @@ DESCRIPTION
|
|
|
868
871
|
manage credentials
|
|
869
872
|
```
|
|
870
873
|
|
|
871
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
874
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
872
875
|
|
|
873
876
|
## `eas credentials:configure-build`
|
|
874
877
|
|
|
@@ -886,7 +889,7 @@ DESCRIPTION
|
|
|
886
889
|
Set up credentials for building your project.
|
|
887
890
|
```
|
|
888
891
|
|
|
889
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
892
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
890
893
|
|
|
891
894
|
## `eas device:create`
|
|
892
895
|
|
|
@@ -900,7 +903,7 @@ DESCRIPTION
|
|
|
900
903
|
register new Apple Devices to use for internal distribution
|
|
901
904
|
```
|
|
902
905
|
|
|
903
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
906
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
904
907
|
|
|
905
908
|
## `eas device:delete`
|
|
906
909
|
|
|
@@ -920,7 +923,7 @@ DESCRIPTION
|
|
|
920
923
|
remove a registered device from your account
|
|
921
924
|
```
|
|
922
925
|
|
|
923
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
926
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
924
927
|
|
|
925
928
|
## `eas device:list`
|
|
926
929
|
|
|
@@ -941,7 +944,7 @@ DESCRIPTION
|
|
|
941
944
|
list all registered devices for your account
|
|
942
945
|
```
|
|
943
946
|
|
|
944
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
947
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
945
948
|
|
|
946
949
|
## `eas device:rename`
|
|
947
950
|
|
|
@@ -962,7 +965,7 @@ DESCRIPTION
|
|
|
962
965
|
rename a registered device
|
|
963
966
|
```
|
|
964
967
|
|
|
965
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
968
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
966
969
|
|
|
967
970
|
## `eas device:view [UDID]`
|
|
968
971
|
|
|
@@ -976,7 +979,7 @@ DESCRIPTION
|
|
|
976
979
|
view a device for your project
|
|
977
980
|
```
|
|
978
981
|
|
|
979
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
982
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
980
983
|
|
|
981
984
|
## `eas diagnostics`
|
|
982
985
|
|
|
@@ -990,7 +993,7 @@ DESCRIPTION
|
|
|
990
993
|
display environment info
|
|
991
994
|
```
|
|
992
995
|
|
|
993
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
996
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
994
997
|
|
|
995
998
|
## `eas help [COMMAND]`
|
|
996
999
|
|
|
@@ -1098,7 +1101,7 @@ DESCRIPTION
|
|
|
1098
1101
|
validate the local store configuration
|
|
1099
1102
|
```
|
|
1100
1103
|
|
|
1101
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1104
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1102
1105
|
|
|
1103
1106
|
## `eas metadata:pull`
|
|
1104
1107
|
|
|
@@ -1115,7 +1118,7 @@ DESCRIPTION
|
|
|
1115
1118
|
generate the local store configuration from the app stores
|
|
1116
1119
|
```
|
|
1117
1120
|
|
|
1118
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1121
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1119
1122
|
|
|
1120
1123
|
## `eas metadata:push`
|
|
1121
1124
|
|
|
@@ -1132,7 +1135,7 @@ DESCRIPTION
|
|
|
1132
1135
|
sync the local store configuration to the app stores
|
|
1133
1136
|
```
|
|
1134
1137
|
|
|
1135
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1138
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1136
1139
|
|
|
1137
1140
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1138
1141
|
|
|
@@ -1162,7 +1165,7 @@ DESCRIPTION
|
|
|
1162
1165
|
open the project page in a web browser
|
|
1163
1166
|
```
|
|
1164
1167
|
|
|
1165
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1168
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/open.ts)_
|
|
1166
1169
|
|
|
1167
1170
|
## `eas project:info`
|
|
1168
1171
|
|
|
@@ -1176,7 +1179,7 @@ DESCRIPTION
|
|
|
1176
1179
|
information about the current project
|
|
1177
1180
|
```
|
|
1178
1181
|
|
|
1179
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1182
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1180
1183
|
|
|
1181
1184
|
## `eas project:init`
|
|
1182
1185
|
|
|
@@ -1199,7 +1202,7 @@ ALIASES
|
|
|
1199
1202
|
$ eas init
|
|
1200
1203
|
```
|
|
1201
1204
|
|
|
1202
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1205
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1203
1206
|
|
|
1204
1207
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1205
1208
|
|
|
@@ -1217,7 +1220,7 @@ ALIASES
|
|
|
1217
1220
|
$ eas onboarding
|
|
1218
1221
|
```
|
|
1219
1222
|
|
|
1220
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1223
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1221
1224
|
|
|
1222
1225
|
## `eas secret:create`
|
|
1223
1226
|
|
|
@@ -1240,7 +1243,7 @@ DESCRIPTION
|
|
|
1240
1243
|
create an environment secret on the current project or owner account
|
|
1241
1244
|
```
|
|
1242
1245
|
|
|
1243
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1246
|
+
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1244
1247
|
|
|
1245
1248
|
## `eas secret:delete`
|
|
1246
1249
|
|
|
@@ -1258,7 +1261,7 @@ DESCRIPTION
|
|
|
1258
1261
|
delete an environment secret by ID
|
|
1259
1262
|
```
|
|
1260
1263
|
|
|
1261
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1264
|
+
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1262
1265
|
|
|
1263
1266
|
## `eas secret:list`
|
|
1264
1267
|
|
|
@@ -1272,7 +1275,7 @@ DESCRIPTION
|
|
|
1272
1275
|
list environment secrets available for your current app
|
|
1273
1276
|
```
|
|
1274
1277
|
|
|
1275
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1278
|
+
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1276
1279
|
|
|
1277
1280
|
## `eas secret:push`
|
|
1278
1281
|
|
|
@@ -1292,7 +1295,7 @@ DESCRIPTION
|
|
|
1292
1295
|
read environment secrets from env file and store on the server
|
|
1293
1296
|
```
|
|
1294
1297
|
|
|
1295
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1298
|
+
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1296
1299
|
|
|
1297
1300
|
## `eas submit`
|
|
1298
1301
|
|
|
@@ -1323,7 +1326,7 @@ ALIASES
|
|
|
1323
1326
|
$ eas build:submit
|
|
1324
1327
|
```
|
|
1325
1328
|
|
|
1326
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1329
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1327
1330
|
|
|
1328
1331
|
## `eas update`
|
|
1329
1332
|
|
|
@@ -1361,7 +1364,7 @@ DESCRIPTION
|
|
|
1361
1364
|
publish an update group
|
|
1362
1365
|
```
|
|
1363
1366
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1367
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1365
1368
|
|
|
1366
1369
|
## `eas update:configure`
|
|
1367
1370
|
|
|
@@ -1379,7 +1382,7 @@ DESCRIPTION
|
|
|
1379
1382
|
configure the project to support EAS Update
|
|
1380
1383
|
```
|
|
1381
1384
|
|
|
1382
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1385
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1383
1386
|
|
|
1384
1387
|
## `eas update:delete GROUPID`
|
|
1385
1388
|
|
|
@@ -1400,7 +1403,7 @@ DESCRIPTION
|
|
|
1400
1403
|
delete all the updates in an update group
|
|
1401
1404
|
```
|
|
1402
1405
|
|
|
1403
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1406
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1404
1407
|
|
|
1405
1408
|
## `eas update:edit [GROUPID]`
|
|
1406
1409
|
|
|
@@ -1424,7 +1427,7 @@ DESCRIPTION
|
|
|
1424
1427
|
edit all the updates in an update group
|
|
1425
1428
|
```
|
|
1426
1429
|
|
|
1427
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1430
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1428
1431
|
|
|
1429
1432
|
## `eas update:list`
|
|
1430
1433
|
|
|
@@ -1446,7 +1449,7 @@ DESCRIPTION
|
|
|
1446
1449
|
view the recent updates
|
|
1447
1450
|
```
|
|
1448
1451
|
|
|
1449
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1452
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1450
1453
|
|
|
1451
1454
|
## `eas update:republish`
|
|
1452
1455
|
|
|
@@ -1478,7 +1481,7 @@ DESCRIPTION
|
|
|
1478
1481
|
roll back to an existing update
|
|
1479
1482
|
```
|
|
1480
1483
|
|
|
1481
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1484
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1482
1485
|
|
|
1483
1486
|
## `eas update:roll-back-to-embedded`
|
|
1484
1487
|
|
|
@@ -1506,7 +1509,7 @@ DESCRIPTION
|
|
|
1506
1509
|
roll back to the embedded update
|
|
1507
1510
|
```
|
|
1508
1511
|
|
|
1509
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1512
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1510
1513
|
|
|
1511
1514
|
## `eas update:rollback`
|
|
1512
1515
|
|
|
@@ -1526,7 +1529,7 @@ DESCRIPTION
|
|
|
1526
1529
|
roll back to an embedded update or an existing update
|
|
1527
1530
|
```
|
|
1528
1531
|
|
|
1529
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1532
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1530
1533
|
|
|
1531
1534
|
## `eas update:view GROUPID`
|
|
1532
1535
|
|
|
@@ -1546,7 +1549,7 @@ DESCRIPTION
|
|
|
1546
1549
|
update group details
|
|
1547
1550
|
```
|
|
1548
1551
|
|
|
1549
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1552
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1550
1553
|
|
|
1551
1554
|
## `eas webhook:create`
|
|
1552
1555
|
|
|
@@ -1567,7 +1570,7 @@ DESCRIPTION
|
|
|
1567
1570
|
create a webhook
|
|
1568
1571
|
```
|
|
1569
1572
|
|
|
1570
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1573
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1571
1574
|
|
|
1572
1575
|
## `eas webhook:delete [ID]`
|
|
1573
1576
|
|
|
@@ -1587,7 +1590,7 @@ DESCRIPTION
|
|
|
1587
1590
|
delete a webhook
|
|
1588
1591
|
```
|
|
1589
1592
|
|
|
1590
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1593
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1591
1594
|
|
|
1592
1595
|
## `eas webhook:list`
|
|
1593
1596
|
|
|
@@ -1605,7 +1608,7 @@ DESCRIPTION
|
|
|
1605
1608
|
list webhooks
|
|
1606
1609
|
```
|
|
1607
1610
|
|
|
1608
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1611
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1609
1612
|
|
|
1610
1613
|
## `eas webhook:update`
|
|
1611
1614
|
|
|
@@ -1627,7 +1630,7 @@ DESCRIPTION
|
|
|
1627
1630
|
update a webhook
|
|
1628
1631
|
```
|
|
1629
1632
|
|
|
1630
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1633
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1631
1634
|
|
|
1632
1635
|
## `eas webhook:view ID`
|
|
1633
1636
|
|
|
@@ -1644,7 +1647,7 @@ DESCRIPTION
|
|
|
1644
1647
|
view a webhook
|
|
1645
1648
|
```
|
|
1646
1649
|
|
|
1647
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1650
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1648
1651
|
|
|
1649
1652
|
## `eas whoami`
|
|
1650
1653
|
|
|
@@ -1660,4 +1663,64 @@ DESCRIPTION
|
|
|
1660
1663
|
ALIASES
|
|
1661
1664
|
$ eas whoami
|
|
1662
1665
|
```
|
|
1666
|
+
|
|
1667
|
+
## `eas workflow:create [NAME]`
|
|
1668
|
+
|
|
1669
|
+
create a new workflow configuration YAML file
|
|
1670
|
+
|
|
1671
|
+
```
|
|
1672
|
+
USAGE
|
|
1673
|
+
$ eas workflow:create [NAME] [--non-interactive]
|
|
1674
|
+
|
|
1675
|
+
ARGUMENTS
|
|
1676
|
+
NAME Name of the workflow file (must end with .yml or .yaml)
|
|
1677
|
+
|
|
1678
|
+
FLAGS
|
|
1679
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1680
|
+
|
|
1681
|
+
DESCRIPTION
|
|
1682
|
+
create a new workflow configuration YAML file
|
|
1683
|
+
```
|
|
1684
|
+
|
|
1685
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
1686
|
+
|
|
1687
|
+
## `eas workflow:run [FILE]`
|
|
1688
|
+
|
|
1689
|
+
Run an EAS workflow
|
|
1690
|
+
|
|
1691
|
+
```
|
|
1692
|
+
USAGE
|
|
1693
|
+
$ eas workflow:run [FILE] [--non-interactive]
|
|
1694
|
+
|
|
1695
|
+
ARGUMENTS
|
|
1696
|
+
FILE Path to the workflow file to run
|
|
1697
|
+
|
|
1698
|
+
FLAGS
|
|
1699
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1700
|
+
|
|
1701
|
+
DESCRIPTION
|
|
1702
|
+
Run an EAS workflow
|
|
1703
|
+
```
|
|
1704
|
+
|
|
1705
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
1706
|
+
|
|
1707
|
+
## `eas workflow:validate PATH`
|
|
1708
|
+
|
|
1709
|
+
validate a workflow configuration yaml file
|
|
1710
|
+
|
|
1711
|
+
```
|
|
1712
|
+
USAGE
|
|
1713
|
+
$ eas workflow:validate PATH [--non-interactive]
|
|
1714
|
+
|
|
1715
|
+
ARGUMENTS
|
|
1716
|
+
PATH Path to the workflow configuration YAML file (must end with .yml or .yaml)
|
|
1717
|
+
|
|
1718
|
+
FLAGS
|
|
1719
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1720
|
+
|
|
1721
|
+
DESCRIPTION
|
|
1722
|
+
validate a workflow configuration yaml file
|
|
1723
|
+
```
|
|
1724
|
+
|
|
1725
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v13.3.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
1663
1726
|
<!-- commandsstop -->
|
|
@@ -5,3 +5,4 @@ export declare function getArtifactUrl(artifactId: string): string;
|
|
|
5
5
|
export declare function getInternalDistributionInstallUrl(build: BuildFragment): string;
|
|
6
6
|
export declare function getUpdateGroupUrl(accountName: string, projectName: string, updateGroupId: string): string;
|
|
7
7
|
export declare function getWorkflowRunUrl(accountName: string, projectName: string, workflowRunId: string): string;
|
|
8
|
+
export declare function getProjectGitHubSettingsUrl(accountName: string, projectName: string): string;
|
package/build/build/utils/url.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getWorkflowRunUrl = exports.getUpdateGroupUrl = exports.getInternalDistributionInstallUrl = exports.getArtifactUrl = exports.getBuildLogsUrl = exports.getProjectDashboardUrl = void 0;
|
|
3
|
+
exports.getProjectGitHubSettingsUrl = exports.getWorkflowRunUrl = exports.getUpdateGroupUrl = exports.getInternalDistributionInstallUrl = exports.getArtifactUrl = exports.getBuildLogsUrl = exports.getProjectDashboardUrl = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const assert_1 = tslib_1.__importDefault(require("assert"));
|
|
6
6
|
const api_1 = require("../../api");
|
|
@@ -37,3 +37,7 @@ function getWorkflowRunUrl(accountName, projectName, workflowRunId) {
|
|
|
37
37
|
return new URL(`/accounts/${encodeURIComponent(accountName)}/projects/${encodeURIComponent(projectName)}/workflows/${workflowRunId}`, (0, api_1.getExpoWebsiteBaseUrl)()).toString();
|
|
38
38
|
}
|
|
39
39
|
exports.getWorkflowRunUrl = getWorkflowRunUrl;
|
|
40
|
+
function getProjectGitHubSettingsUrl(accountName, projectName) {
|
|
41
|
+
return new URL(`/accounts/${encodeURIComponent(accountName)}/projects/${encodeURIComponent(projectName)}/github`, (0, api_1.getExpoWebsiteBaseUrl)()).toString();
|
|
42
|
+
}
|
|
43
|
+
exports.getProjectGitHubSettingsUrl = getProjectGitHubSettingsUrl;
|