eas-cli 13.2.3 → 13.4.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 +359 -162
- package/build/build/build.js +3 -3
- package/build/build/evaluateConfigWithEnvVarsAsync.js +18 -2
- package/build/build/utils/url.d.ts +1 -0
- package/build/build/utils/url.js +5 -1
- package/build/commandUtils/flags.d.ts +5 -4
- package/build/commandUtils/flags.js +6 -8
- package/build/commands/env/create.d.ts +6 -6
- package/build/commands/env/create.js +27 -28
- package/build/commands/env/delete.d.ts +5 -5
- package/build/commands/env/delete.js +15 -13
- package/build/commands/env/exec.d.ts +0 -1
- package/build/commands/env/exec.js +1 -2
- package/build/commands/env/get.d.ts +5 -5
- package/build/commands/env/get.js +16 -13
- package/build/commands/env/link.d.ts +1 -1
- package/build/commands/env/link.js +12 -13
- package/build/commands/env/list.d.ts +5 -5
- package/build/commands/env/list.js +14 -12
- package/build/commands/env/pull.d.ts +1 -2
- package/build/commands/env/pull.js +8 -9
- package/build/commands/env/push.d.ts +1 -2
- package/build/commands/env/push.js +9 -10
- package/build/commands/env/unlink.d.ts +1 -1
- package/build/commands/env/unlink.js +11 -10
- package/build/commands/env/update.d.ts +6 -6
- package/build/commands/env/update.js +18 -15
- package/build/commands/secret/create.d.ts +1 -0
- package/build/commands/secret/create.js +3 -0
- package/build/commands/secret/delete.d.ts +1 -0
- package/build/commands/secret/delete.js +3 -0
- package/build/commands/secret/list.d.ts +1 -0
- package/build/commands/secret/list.js +3 -0
- package/build/commands/secret/push.d.ts +1 -0
- package/build/commands/secret/push.js +3 -0
- package/build/commands/update/index.js +19 -2
- 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 +199 -28
- package/build/graphql/generated.js +10 -1
- package/build/graphql/mutations/EnvironmentVariableMutation.d.ts +1 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.d.ts +33 -0
- package/build/graphql/mutations/WorkflowRevisionMutation.js +32 -0
- package/build/graphql/types/Update.js +9 -0
- package/build/project/publish.d.ts +23 -1
- package/build/project/publish.js +71 -11
- package/build/project/resolveRuntimeVersionAsync.d.ts +2 -0
- package/build/project/resolveRuntimeVersionAsync.js +4 -0
- package/build/update/republish.js +19 -0
- package/build/utils/expodash/mapMapAsync.d.ts +1 -0
- package/build/utils/expodash/mapMapAsync.js +12 -0
- package/build/utils/fingerprintCli.d.ts +21 -3
- package/build/utils/fingerprintCli.js +62 -13
- package/build/utils/prompts.d.ts +1 -1
- package/build/utils/prompts.js +1 -1
- package/build/utils/workflowFile.d.ts +16 -0
- package/build/utils/workflowFile.js +64 -0
- package/oclif.manifest.json +84 -52
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -94,6 +94,14 @@ eas --help COMMAND
|
|
|
94
94
|
* [`eas device:rename`](#eas-devicerename)
|
|
95
95
|
* [`eas device:view [UDID]`](#eas-deviceview-udid)
|
|
96
96
|
* [`eas diagnostics`](#eas-diagnostics)
|
|
97
|
+
* [`eas env:create [ENVIRONMENT]`](#eas-envcreate-environment)
|
|
98
|
+
* [`eas env:delete [ENVIRONMENT]`](#eas-envdelete-environment)
|
|
99
|
+
* [`eas env:exec ENVIRONMENT BASH_COMMAND`](#eas-envexec-environment-bash_command)
|
|
100
|
+
* [`eas env:get [ENVIRONMENT]`](#eas-envget-environment)
|
|
101
|
+
* [`eas env:list [ENVIRONMENT]`](#eas-envlist-environment)
|
|
102
|
+
* [`eas env:pull [ENVIRONMENT]`](#eas-envpull-environment)
|
|
103
|
+
* [`eas env:push [ENVIRONMENT]`](#eas-envpush-environment)
|
|
104
|
+
* [`eas env:update [ENVIRONMENT]`](#eas-envupdate-environment)
|
|
97
105
|
* [`eas help [COMMAND]`](#eas-help-command)
|
|
98
106
|
* [`eas init`](#eas-init)
|
|
99
107
|
* [`eas init:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-initonboarding-target_project_directory)
|
|
@@ -107,10 +115,6 @@ eas --help COMMAND
|
|
|
107
115
|
* [`eas project:info`](#eas-projectinfo)
|
|
108
116
|
* [`eas project:init`](#eas-projectinit)
|
|
109
117
|
* [`eas project:onboarding [TARGET_PROJECT_DIRECTORY]`](#eas-projectonboarding-target_project_directory)
|
|
110
|
-
* [`eas secret:create`](#eas-secretcreate)
|
|
111
|
-
* [`eas secret:delete`](#eas-secretdelete)
|
|
112
|
-
* [`eas secret:list`](#eas-secretlist)
|
|
113
|
-
* [`eas secret:push`](#eas-secretpush)
|
|
114
118
|
* [`eas submit`](#eas-submit)
|
|
115
119
|
* [`eas update`](#eas-update)
|
|
116
120
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
@@ -127,6 +131,9 @@ eas --help COMMAND
|
|
|
127
131
|
* [`eas webhook:update`](#eas-webhookupdate)
|
|
128
132
|
* [`eas webhook:view ID`](#eas-webhookview-id)
|
|
129
133
|
* [`eas whoami`](#eas-whoami)
|
|
134
|
+
* [`eas workflow:create [NAME]`](#eas-workflowcreate-name)
|
|
135
|
+
* [`eas workflow:run [FILE]`](#eas-workflowrun-file)
|
|
136
|
+
* [`eas workflow:validate PATH`](#eas-workflowvalidate-path)
|
|
130
137
|
|
|
131
138
|
## `eas account:login`
|
|
132
139
|
|
|
@@ -146,7 +153,7 @@ ALIASES
|
|
|
146
153
|
$ eas login
|
|
147
154
|
```
|
|
148
155
|
|
|
149
|
-
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
156
|
+
_See code: [packages/eas-cli/src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/login.ts)_
|
|
150
157
|
|
|
151
158
|
## `eas account:logout`
|
|
152
159
|
|
|
@@ -163,7 +170,7 @@ ALIASES
|
|
|
163
170
|
$ eas logout
|
|
164
171
|
```
|
|
165
172
|
|
|
166
|
-
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
173
|
+
_See code: [packages/eas-cli/src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/logout.ts)_
|
|
167
174
|
|
|
168
175
|
## `eas account:view`
|
|
169
176
|
|
|
@@ -180,7 +187,7 @@ ALIASES
|
|
|
180
187
|
$ eas whoami
|
|
181
188
|
```
|
|
182
189
|
|
|
183
|
-
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
190
|
+
_See code: [packages/eas-cli/src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/account/view.ts)_
|
|
184
191
|
|
|
185
192
|
## `eas analytics [STATUS]`
|
|
186
193
|
|
|
@@ -194,7 +201,7 @@ DESCRIPTION
|
|
|
194
201
|
display or change analytics settings
|
|
195
202
|
```
|
|
196
203
|
|
|
197
|
-
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
204
|
+
_See code: [packages/eas-cli/src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/analytics.ts)_
|
|
198
205
|
|
|
199
206
|
## `eas autocomplete [SHELL]`
|
|
200
207
|
|
|
@@ -246,7 +253,7 @@ DESCRIPTION
|
|
|
246
253
|
create a branch
|
|
247
254
|
```
|
|
248
255
|
|
|
249
|
-
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
256
|
+
_See code: [packages/eas-cli/src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/create.ts)_
|
|
250
257
|
|
|
251
258
|
## `eas branch:delete [NAME]`
|
|
252
259
|
|
|
@@ -267,7 +274,7 @@ DESCRIPTION
|
|
|
267
274
|
delete a branch
|
|
268
275
|
```
|
|
269
276
|
|
|
270
|
-
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
277
|
+
_See code: [packages/eas-cli/src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
271
278
|
|
|
272
279
|
## `eas branch:list`
|
|
273
280
|
|
|
@@ -287,7 +294,7 @@ DESCRIPTION
|
|
|
287
294
|
list all branches
|
|
288
295
|
```
|
|
289
296
|
|
|
290
|
-
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
297
|
+
_See code: [packages/eas-cli/src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/list.ts)_
|
|
291
298
|
|
|
292
299
|
## `eas branch:rename`
|
|
293
300
|
|
|
@@ -307,7 +314,7 @@ DESCRIPTION
|
|
|
307
314
|
rename a branch
|
|
308
315
|
```
|
|
309
316
|
|
|
310
|
-
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
317
|
+
_See code: [packages/eas-cli/src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
311
318
|
|
|
312
319
|
## `eas branch:view [NAME]`
|
|
313
320
|
|
|
@@ -330,7 +337,7 @@ DESCRIPTION
|
|
|
330
337
|
view a branch
|
|
331
338
|
```
|
|
332
339
|
|
|
333
|
-
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
340
|
+
_See code: [packages/eas-cli/src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/branch/view.ts)_
|
|
334
341
|
|
|
335
342
|
## `eas build`
|
|
336
343
|
|
|
@@ -367,7 +374,7 @@ DESCRIPTION
|
|
|
367
374
|
start a build
|
|
368
375
|
```
|
|
369
376
|
|
|
370
|
-
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
377
|
+
_See code: [packages/eas-cli/src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/index.ts)_
|
|
371
378
|
|
|
372
379
|
## `eas build:cancel [BUILD_ID]`
|
|
373
380
|
|
|
@@ -386,7 +393,7 @@ DESCRIPTION
|
|
|
386
393
|
cancel a build
|
|
387
394
|
```
|
|
388
395
|
|
|
389
|
-
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
396
|
+
_See code: [packages/eas-cli/src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
390
397
|
|
|
391
398
|
## `eas build:configure`
|
|
392
399
|
|
|
@@ -403,7 +410,7 @@ DESCRIPTION
|
|
|
403
410
|
configure the project to support EAS Build
|
|
404
411
|
```
|
|
405
412
|
|
|
406
|
-
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
413
|
+
_See code: [packages/eas-cli/src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/configure.ts)_
|
|
407
414
|
|
|
408
415
|
## `eas build:delete [BUILD_ID]`
|
|
409
416
|
|
|
@@ -422,7 +429,7 @@ DESCRIPTION
|
|
|
422
429
|
delete a build
|
|
423
430
|
```
|
|
424
431
|
|
|
425
|
-
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
432
|
+
_See code: [packages/eas-cli/src/commands/build/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/delete.ts)_
|
|
426
433
|
|
|
427
434
|
## `eas build:inspect`
|
|
428
435
|
|
|
@@ -457,7 +464,7 @@ DESCRIPTION
|
|
|
457
464
|
inspect the state of the project at specific build stages, useful for troubleshooting
|
|
458
465
|
```
|
|
459
466
|
|
|
460
|
-
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
467
|
+
_See code: [packages/eas-cli/src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
461
468
|
|
|
462
469
|
## `eas build:list`
|
|
463
470
|
|
|
@@ -507,7 +514,7 @@ DESCRIPTION
|
|
|
507
514
|
list all builds for your project
|
|
508
515
|
```
|
|
509
516
|
|
|
510
|
-
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
517
|
+
_See code: [packages/eas-cli/src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/list.ts)_
|
|
511
518
|
|
|
512
519
|
## `eas build:resign`
|
|
513
520
|
|
|
@@ -536,7 +543,7 @@ DESCRIPTION
|
|
|
536
543
|
re-sign a build archive
|
|
537
544
|
```
|
|
538
545
|
|
|
539
|
-
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
546
|
+
_See code: [packages/eas-cli/src/commands/build/resign.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/resign.ts)_
|
|
540
547
|
|
|
541
548
|
## `eas build:run`
|
|
542
549
|
|
|
@@ -562,7 +569,7 @@ DESCRIPTION
|
|
|
562
569
|
run simulator/emulator builds from eas-cli
|
|
563
570
|
```
|
|
564
571
|
|
|
565
|
-
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
572
|
+
_See code: [packages/eas-cli/src/commands/build/run.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/run.ts)_
|
|
566
573
|
|
|
567
574
|
## `eas build:submit`
|
|
568
575
|
|
|
@@ -612,7 +619,7 @@ DESCRIPTION
|
|
|
612
619
|
get the latest version from EAS servers
|
|
613
620
|
```
|
|
614
621
|
|
|
615
|
-
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
622
|
+
_See code: [packages/eas-cli/src/commands/build/version/get.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/get.ts)_
|
|
616
623
|
|
|
617
624
|
## `eas build:version:set`
|
|
618
625
|
|
|
@@ -631,7 +638,7 @@ DESCRIPTION
|
|
|
631
638
|
update version of an app
|
|
632
639
|
```
|
|
633
640
|
|
|
634
|
-
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
641
|
+
_See code: [packages/eas-cli/src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/set.ts)_
|
|
635
642
|
|
|
636
643
|
## `eas build:version:sync`
|
|
637
644
|
|
|
@@ -650,7 +657,7 @@ DESCRIPTION
|
|
|
650
657
|
update a version in native code with a value stored on EAS servers
|
|
651
658
|
```
|
|
652
659
|
|
|
653
|
-
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
660
|
+
_See code: [packages/eas-cli/src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/version/sync.ts)_
|
|
654
661
|
|
|
655
662
|
## `eas build:view [BUILD_ID]`
|
|
656
663
|
|
|
@@ -667,7 +674,7 @@ DESCRIPTION
|
|
|
667
674
|
view a build for your project
|
|
668
675
|
```
|
|
669
676
|
|
|
670
|
-
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
677
|
+
_See code: [packages/eas-cli/src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/build/view.ts)_
|
|
671
678
|
|
|
672
679
|
## `eas channel:create [NAME]`
|
|
673
680
|
|
|
@@ -688,7 +695,7 @@ DESCRIPTION
|
|
|
688
695
|
create a channel
|
|
689
696
|
```
|
|
690
697
|
|
|
691
|
-
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
698
|
+
_See code: [packages/eas-cli/src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/create.ts)_
|
|
692
699
|
|
|
693
700
|
## `eas channel:edit [NAME]`
|
|
694
701
|
|
|
@@ -710,7 +717,7 @@ DESCRIPTION
|
|
|
710
717
|
point a channel at a new branch
|
|
711
718
|
```
|
|
712
719
|
|
|
713
|
-
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
720
|
+
_See code: [packages/eas-cli/src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
714
721
|
|
|
715
722
|
## `eas channel:list`
|
|
716
723
|
|
|
@@ -730,7 +737,7 @@ DESCRIPTION
|
|
|
730
737
|
list all channels
|
|
731
738
|
```
|
|
732
739
|
|
|
733
|
-
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
740
|
+
_See code: [packages/eas-cli/src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/list.ts)_
|
|
734
741
|
|
|
735
742
|
## `eas channel:pause [NAME]`
|
|
736
743
|
|
|
@@ -752,7 +759,7 @@ DESCRIPTION
|
|
|
752
759
|
pause a channel to stop it from sending updates
|
|
753
760
|
```
|
|
754
761
|
|
|
755
|
-
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
762
|
+
_See code: [packages/eas-cli/src/commands/channel/pause.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/pause.ts)_
|
|
756
763
|
|
|
757
764
|
## `eas channel:resume [NAME]`
|
|
758
765
|
|
|
@@ -774,7 +781,7 @@ DESCRIPTION
|
|
|
774
781
|
resume a channel to start sending updates
|
|
775
782
|
```
|
|
776
783
|
|
|
777
|
-
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
784
|
+
_See code: [packages/eas-cli/src/commands/channel/resume.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/resume.ts)_
|
|
778
785
|
|
|
779
786
|
## `eas channel:rollout [CHANNEL]`
|
|
780
787
|
|
|
@@ -807,7 +814,7 @@ DESCRIPTION
|
|
|
807
814
|
Roll a new branch out on a channel incrementally.
|
|
808
815
|
```
|
|
809
816
|
|
|
810
|
-
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
817
|
+
_See code: [packages/eas-cli/src/commands/channel/rollout.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/rollout.ts)_
|
|
811
818
|
|
|
812
819
|
## `eas channel:view [NAME]`
|
|
813
820
|
|
|
@@ -830,7 +837,7 @@ DESCRIPTION
|
|
|
830
837
|
view a channel
|
|
831
838
|
```
|
|
832
839
|
|
|
833
|
-
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
840
|
+
_See code: [packages/eas-cli/src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/channel/view.ts)_
|
|
834
841
|
|
|
835
842
|
## `eas config`
|
|
836
843
|
|
|
@@ -851,7 +858,7 @@ DESCRIPTION
|
|
|
851
858
|
display project configuration (app.json + eas.json)
|
|
852
859
|
```
|
|
853
860
|
|
|
854
|
-
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
861
|
+
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/config.ts)_
|
|
855
862
|
|
|
856
863
|
## `eas credentials`
|
|
857
864
|
|
|
@@ -868,7 +875,7 @@ DESCRIPTION
|
|
|
868
875
|
manage credentials
|
|
869
876
|
```
|
|
870
877
|
|
|
871
|
-
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
878
|
+
_See code: [packages/eas-cli/src/commands/credentials/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/credentials/index.ts)_
|
|
872
879
|
|
|
873
880
|
## `eas credentials:configure-build`
|
|
874
881
|
|
|
@@ -886,7 +893,7 @@ DESCRIPTION
|
|
|
886
893
|
Set up credentials for building your project.
|
|
887
894
|
```
|
|
888
895
|
|
|
889
|
-
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
896
|
+
_See code: [packages/eas-cli/src/commands/credentials/configure-build.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/credentials/configure-build.ts)_
|
|
890
897
|
|
|
891
898
|
## `eas device:create`
|
|
892
899
|
|
|
@@ -900,7 +907,7 @@ DESCRIPTION
|
|
|
900
907
|
register new Apple Devices to use for internal distribution
|
|
901
908
|
```
|
|
902
909
|
|
|
903
|
-
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
910
|
+
_See code: [packages/eas-cli/src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/create.ts)_
|
|
904
911
|
|
|
905
912
|
## `eas device:delete`
|
|
906
913
|
|
|
@@ -920,7 +927,7 @@ DESCRIPTION
|
|
|
920
927
|
remove a registered device from your account
|
|
921
928
|
```
|
|
922
929
|
|
|
923
|
-
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
930
|
+
_See code: [packages/eas-cli/src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/delete.ts)_
|
|
924
931
|
|
|
925
932
|
## `eas device:list`
|
|
926
933
|
|
|
@@ -941,7 +948,7 @@ DESCRIPTION
|
|
|
941
948
|
list all registered devices for your account
|
|
942
949
|
```
|
|
943
950
|
|
|
944
|
-
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
951
|
+
_See code: [packages/eas-cli/src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/list.ts)_
|
|
945
952
|
|
|
946
953
|
## `eas device:rename`
|
|
947
954
|
|
|
@@ -962,7 +969,7 @@ DESCRIPTION
|
|
|
962
969
|
rename a registered device
|
|
963
970
|
```
|
|
964
971
|
|
|
965
|
-
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
972
|
+
_See code: [packages/eas-cli/src/commands/device/rename.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/rename.ts)_
|
|
966
973
|
|
|
967
974
|
## `eas device:view [UDID]`
|
|
968
975
|
|
|
@@ -976,7 +983,7 @@ DESCRIPTION
|
|
|
976
983
|
view a device for your project
|
|
977
984
|
```
|
|
978
985
|
|
|
979
|
-
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
986
|
+
_See code: [packages/eas-cli/src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/device/view.ts)_
|
|
980
987
|
|
|
981
988
|
## `eas diagnostics`
|
|
982
989
|
|
|
@@ -990,7 +997,206 @@ DESCRIPTION
|
|
|
990
997
|
display environment info
|
|
991
998
|
```
|
|
992
999
|
|
|
993
|
-
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1000
|
+
_See code: [packages/eas-cli/src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
1001
|
+
|
|
1002
|
+
## `eas env:create [ENVIRONMENT]`
|
|
1003
|
+
|
|
1004
|
+
create an environment variable for the current project or account
|
|
1005
|
+
|
|
1006
|
+
```
|
|
1007
|
+
USAGE
|
|
1008
|
+
$ eas env:create [ENVIRONMENT] [--name <value>] [--value <value>] [--force] [--type string|file] [--visibility
|
|
1009
|
+
plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
|
|
1010
|
+
[--non-interactive]
|
|
1011
|
+
|
|
1012
|
+
ARGUMENTS
|
|
1013
|
+
ENVIRONMENT Environment to create the variable in. One of 'production', 'preview', or 'development'.
|
|
1014
|
+
|
|
1015
|
+
FLAGS
|
|
1016
|
+
--environment=(development|preview|production)... Environment variable's environment
|
|
1017
|
+
--force Overwrite existing variable
|
|
1018
|
+
--name=<value> Name of the variable
|
|
1019
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1020
|
+
--scope=(project|account) [default: project] Scope for the variable
|
|
1021
|
+
--type=(string|file) The type of variable
|
|
1022
|
+
--value=<value> Text value or the variable
|
|
1023
|
+
--visibility=(plaintext|sensitive|secret) Visibility of the variable
|
|
1024
|
+
|
|
1025
|
+
DESCRIPTION
|
|
1026
|
+
create an environment variable for the current project or account
|
|
1027
|
+
```
|
|
1028
|
+
|
|
1029
|
+
_See code: [packages/eas-cli/src/commands/env/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/create.ts)_
|
|
1030
|
+
|
|
1031
|
+
## `eas env:delete [ENVIRONMENT]`
|
|
1032
|
+
|
|
1033
|
+
delete an environment variable for the current project or account
|
|
1034
|
+
|
|
1035
|
+
```
|
|
1036
|
+
USAGE
|
|
1037
|
+
$ eas env:delete [ENVIRONMENT] [--variable-name <value>] [--variable-environment
|
|
1038
|
+
development|preview|production] [--scope project|account] [--non-interactive]
|
|
1039
|
+
|
|
1040
|
+
ARGUMENTS
|
|
1041
|
+
ENVIRONMENT Current environment of the variable to delete. One of 'production', 'preview', or 'development'.
|
|
1042
|
+
|
|
1043
|
+
FLAGS
|
|
1044
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1045
|
+
--scope=(project|account) [default: project] Scope for the variable
|
|
1046
|
+
--variable-environment=(development|preview|production) Current environment of the variable to delete
|
|
1047
|
+
--variable-name=<value> Name of the variable to delete
|
|
1048
|
+
|
|
1049
|
+
DESCRIPTION
|
|
1050
|
+
delete an environment variable for the current project or account
|
|
1051
|
+
```
|
|
1052
|
+
|
|
1053
|
+
_See code: [packages/eas-cli/src/commands/env/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/delete.ts)_
|
|
1054
|
+
|
|
1055
|
+
## `eas env:exec ENVIRONMENT BASH_COMMAND`
|
|
1056
|
+
|
|
1057
|
+
execute a command with environment variables from the selected environment
|
|
1058
|
+
|
|
1059
|
+
```
|
|
1060
|
+
USAGE
|
|
1061
|
+
$ eas env:exec ENVIRONMENT BASH_COMMAND [--non-interactive]
|
|
1062
|
+
|
|
1063
|
+
ARGUMENTS
|
|
1064
|
+
ENVIRONMENT Environment to execute the command in. One of 'production', 'preview', or 'development'.
|
|
1065
|
+
BASH_COMMAND bash command to execute with the environment variables from the environment
|
|
1066
|
+
|
|
1067
|
+
FLAGS
|
|
1068
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1069
|
+
|
|
1070
|
+
DESCRIPTION
|
|
1071
|
+
execute a command with environment variables from the selected environment
|
|
1072
|
+
```
|
|
1073
|
+
|
|
1074
|
+
_See code: [packages/eas-cli/src/commands/env/exec.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/exec.ts)_
|
|
1075
|
+
|
|
1076
|
+
## `eas env:get [ENVIRONMENT]`
|
|
1077
|
+
|
|
1078
|
+
view an environment variable for the current project or account
|
|
1079
|
+
|
|
1080
|
+
```
|
|
1081
|
+
USAGE
|
|
1082
|
+
$ eas env:get [ENVIRONMENT] [--variable-name <value>] [--variable-environment
|
|
1083
|
+
development|preview|production] [--format long|short] [--scope project|account] [--non-interactive]
|
|
1084
|
+
|
|
1085
|
+
ARGUMENTS
|
|
1086
|
+
ENVIRONMENT Current environment of the variable. One of 'production', 'preview', or 'development'.
|
|
1087
|
+
|
|
1088
|
+
FLAGS
|
|
1089
|
+
--format=(long|short) [default: short] Output format
|
|
1090
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1091
|
+
--scope=(project|account) [default: project] Scope for the variable
|
|
1092
|
+
--variable-environment=(development|preview|production) Current environment of the variable
|
|
1093
|
+
--variable-name=<value> Name of the variable
|
|
1094
|
+
|
|
1095
|
+
DESCRIPTION
|
|
1096
|
+
view an environment variable for the current project or account
|
|
1097
|
+
```
|
|
1098
|
+
|
|
1099
|
+
_See code: [packages/eas-cli/src/commands/env/get.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/get.ts)_
|
|
1100
|
+
|
|
1101
|
+
## `eas env:list [ENVIRONMENT]`
|
|
1102
|
+
|
|
1103
|
+
list environment variables for the current project or account
|
|
1104
|
+
|
|
1105
|
+
```
|
|
1106
|
+
USAGE
|
|
1107
|
+
$ eas env:list [ENVIRONMENT] [--include-sensitive] [--include-file-content] [--environment
|
|
1108
|
+
development|preview|production] [--format long|short] [--scope project|account]
|
|
1109
|
+
|
|
1110
|
+
ARGUMENTS
|
|
1111
|
+
ENVIRONMENT Environment to list the variables from. One of 'production', 'preview', or 'development'.
|
|
1112
|
+
|
|
1113
|
+
FLAGS
|
|
1114
|
+
--environment=(development|preview|production)... Environment variable's environment
|
|
1115
|
+
--format=(long|short) [default: short] Output format
|
|
1116
|
+
--include-file-content Display files content in the output
|
|
1117
|
+
--include-sensitive Display sensitive values in the output
|
|
1118
|
+
--scope=(project|account) [default: project] Scope for the variable
|
|
1119
|
+
|
|
1120
|
+
DESCRIPTION
|
|
1121
|
+
list environment variables for the current project or account
|
|
1122
|
+
```
|
|
1123
|
+
|
|
1124
|
+
_See code: [packages/eas-cli/src/commands/env/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/list.ts)_
|
|
1125
|
+
|
|
1126
|
+
## `eas env:pull [ENVIRONMENT]`
|
|
1127
|
+
|
|
1128
|
+
pull environment variables for the selected environment to .env file
|
|
1129
|
+
|
|
1130
|
+
```
|
|
1131
|
+
USAGE
|
|
1132
|
+
$ eas env:pull [ENVIRONMENT] [--non-interactive] [--environment development|preview|production] [--path
|
|
1133
|
+
<value>]
|
|
1134
|
+
|
|
1135
|
+
ARGUMENTS
|
|
1136
|
+
ENVIRONMENT Environment to pull variables from. One of 'production', 'preview', or 'development'.
|
|
1137
|
+
|
|
1138
|
+
FLAGS
|
|
1139
|
+
--environment=(development|preview|production) Environment variable's environment
|
|
1140
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1141
|
+
--path=<value> [default: .env.local] Path to the result `.env` file
|
|
1142
|
+
|
|
1143
|
+
DESCRIPTION
|
|
1144
|
+
pull environment variables for the selected environment to .env file
|
|
1145
|
+
```
|
|
1146
|
+
|
|
1147
|
+
_See code: [packages/eas-cli/src/commands/env/pull.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/pull.ts)_
|
|
1148
|
+
|
|
1149
|
+
## `eas env:push [ENVIRONMENT]`
|
|
1150
|
+
|
|
1151
|
+
push environment variables from .env file to the selected environment
|
|
1152
|
+
|
|
1153
|
+
```
|
|
1154
|
+
USAGE
|
|
1155
|
+
$ eas env:push [ENVIRONMENT] [--environment development|preview|production] [--path <value>]
|
|
1156
|
+
|
|
1157
|
+
ARGUMENTS
|
|
1158
|
+
ENVIRONMENT Environment to push variables to. One of 'production', 'preview', or 'development'.
|
|
1159
|
+
|
|
1160
|
+
FLAGS
|
|
1161
|
+
--environment=(development|preview|production)... Environment variable's environment
|
|
1162
|
+
--path=<value> [default: .env.local] Path to the input `.env` file
|
|
1163
|
+
|
|
1164
|
+
DESCRIPTION
|
|
1165
|
+
push environment variables from .env file to the selected environment
|
|
1166
|
+
```
|
|
1167
|
+
|
|
1168
|
+
_See code: [packages/eas-cli/src/commands/env/push.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/push.ts)_
|
|
1169
|
+
|
|
1170
|
+
## `eas env:update [ENVIRONMENT]`
|
|
1171
|
+
|
|
1172
|
+
update an environment variable on the current project or account
|
|
1173
|
+
|
|
1174
|
+
```
|
|
1175
|
+
USAGE
|
|
1176
|
+
$ eas env:update [ENVIRONMENT] [--variable-name <value>] [--variable-environment
|
|
1177
|
+
development|preview|production] [--name <value>] [--value <value>] [--type string|file] [--visibility
|
|
1178
|
+
plaintext|sensitive|secret] [--scope project|account] [--environment development|preview|production]
|
|
1179
|
+
[--non-interactive]
|
|
1180
|
+
|
|
1181
|
+
ARGUMENTS
|
|
1182
|
+
ENVIRONMENT Current environment of the variable to update. One of 'production', 'preview', or 'development'.
|
|
1183
|
+
|
|
1184
|
+
FLAGS
|
|
1185
|
+
--environment=(development|preview|production)... Environment variable's environment
|
|
1186
|
+
--name=<value> New name of the variable
|
|
1187
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1188
|
+
--scope=(project|account) [default: project] Scope for the variable
|
|
1189
|
+
--type=(string|file) The type of variable
|
|
1190
|
+
--value=<value> New value or the variable
|
|
1191
|
+
--variable-environment=(development|preview|production) Current environment of the variable to update
|
|
1192
|
+
--variable-name=<value> Current name of the variable
|
|
1193
|
+
--visibility=(plaintext|sensitive|secret) Visibility of the variable
|
|
1194
|
+
|
|
1195
|
+
DESCRIPTION
|
|
1196
|
+
update an environment variable on the current project or account
|
|
1197
|
+
```
|
|
1198
|
+
|
|
1199
|
+
_See code: [packages/eas-cli/src/commands/env/update.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/env/update.ts)_
|
|
994
1200
|
|
|
995
1201
|
## `eas help [COMMAND]`
|
|
996
1202
|
|
|
@@ -1098,7 +1304,7 @@ DESCRIPTION
|
|
|
1098
1304
|
validate the local store configuration
|
|
1099
1305
|
```
|
|
1100
1306
|
|
|
1101
|
-
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1307
|
+
_See code: [packages/eas-cli/src/commands/metadata/lint.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/lint.ts)_
|
|
1102
1308
|
|
|
1103
1309
|
## `eas metadata:pull`
|
|
1104
1310
|
|
|
@@ -1115,7 +1321,7 @@ DESCRIPTION
|
|
|
1115
1321
|
generate the local store configuration from the app stores
|
|
1116
1322
|
```
|
|
1117
1323
|
|
|
1118
|
-
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1324
|
+
_See code: [packages/eas-cli/src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/pull.ts)_
|
|
1119
1325
|
|
|
1120
1326
|
## `eas metadata:push`
|
|
1121
1327
|
|
|
@@ -1132,7 +1338,7 @@ DESCRIPTION
|
|
|
1132
1338
|
sync the local store configuration to the app stores
|
|
1133
1339
|
```
|
|
1134
1340
|
|
|
1135
|
-
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1341
|
+
_See code: [packages/eas-cli/src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/metadata/push.ts)_
|
|
1136
1342
|
|
|
1137
1343
|
## `eas onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1138
1344
|
|
|
@@ -1162,7 +1368,7 @@ DESCRIPTION
|
|
|
1162
1368
|
open the project page in a web browser
|
|
1163
1369
|
```
|
|
1164
1370
|
|
|
1165
|
-
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1371
|
+
_See code: [packages/eas-cli/src/commands/open.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/open.ts)_
|
|
1166
1372
|
|
|
1167
1373
|
## `eas project:info`
|
|
1168
1374
|
|
|
@@ -1176,7 +1382,7 @@ DESCRIPTION
|
|
|
1176
1382
|
information about the current project
|
|
1177
1383
|
```
|
|
1178
1384
|
|
|
1179
|
-
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1385
|
+
_See code: [packages/eas-cli/src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/info.ts)_
|
|
1180
1386
|
|
|
1181
1387
|
## `eas project:init`
|
|
1182
1388
|
|
|
@@ -1199,7 +1405,7 @@ ALIASES
|
|
|
1199
1405
|
$ eas init
|
|
1200
1406
|
```
|
|
1201
1407
|
|
|
1202
|
-
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1408
|
+
_See code: [packages/eas-cli/src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/init.ts)_
|
|
1203
1409
|
|
|
1204
1410
|
## `eas project:onboarding [TARGET_PROJECT_DIRECTORY]`
|
|
1205
1411
|
|
|
@@ -1217,82 +1423,7 @@ ALIASES
|
|
|
1217
1423
|
$ eas onboarding
|
|
1218
1424
|
```
|
|
1219
1425
|
|
|
1220
|
-
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1221
|
-
|
|
1222
|
-
## `eas secret:create`
|
|
1223
|
-
|
|
1224
|
-
create an environment secret on the current project or owner account
|
|
1225
|
-
|
|
1226
|
-
```
|
|
1227
|
-
USAGE
|
|
1228
|
-
$ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--type string|file] [--force]
|
|
1229
|
-
[--non-interactive]
|
|
1230
|
-
|
|
1231
|
-
FLAGS
|
|
1232
|
-
--force Delete and recreate existing secrets
|
|
1233
|
-
--name=<value> Name of the secret
|
|
1234
|
-
--non-interactive Run the command in non-interactive mode.
|
|
1235
|
-
--scope=(account|project) [default: project] Scope for the secret
|
|
1236
|
-
--type=(string|file) The type of secret
|
|
1237
|
-
--value=<value> Text value or path to a file to store in the secret
|
|
1238
|
-
|
|
1239
|
-
DESCRIPTION
|
|
1240
|
-
create an environment secret on the current project or owner account
|
|
1241
|
-
```
|
|
1242
|
-
|
|
1243
|
-
_See code: [packages/eas-cli/src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v13.2.3/packages/eas-cli/src/commands/secret/create.ts)_
|
|
1244
|
-
|
|
1245
|
-
## `eas secret:delete`
|
|
1246
|
-
|
|
1247
|
-
delete an environment secret by ID
|
|
1248
|
-
|
|
1249
|
-
```
|
|
1250
|
-
USAGE
|
|
1251
|
-
$ eas secret:delete [--id <value>] [--non-interactive]
|
|
1252
|
-
|
|
1253
|
-
FLAGS
|
|
1254
|
-
--id=<value> ID of the secret to delete
|
|
1255
|
-
--non-interactive Run the command in non-interactive mode.
|
|
1256
|
-
|
|
1257
|
-
DESCRIPTION
|
|
1258
|
-
delete an environment secret by ID
|
|
1259
|
-
```
|
|
1260
|
-
|
|
1261
|
-
_See code: [packages/eas-cli/src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v13.2.3/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
1262
|
-
|
|
1263
|
-
## `eas secret:list`
|
|
1264
|
-
|
|
1265
|
-
list environment secrets available for your current app
|
|
1266
|
-
|
|
1267
|
-
```
|
|
1268
|
-
USAGE
|
|
1269
|
-
$ eas secret:list
|
|
1270
|
-
|
|
1271
|
-
DESCRIPTION
|
|
1272
|
-
list environment secrets available for your current app
|
|
1273
|
-
```
|
|
1274
|
-
|
|
1275
|
-
_See code: [packages/eas-cli/src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v13.2.3/packages/eas-cli/src/commands/secret/list.ts)_
|
|
1276
|
-
|
|
1277
|
-
## `eas secret:push`
|
|
1278
|
-
|
|
1279
|
-
read environment secrets from env file and store on the server
|
|
1280
|
-
|
|
1281
|
-
```
|
|
1282
|
-
USAGE
|
|
1283
|
-
$ eas secret:push [--scope account|project] [--env-file <value>] [--force] [--non-interactive]
|
|
1284
|
-
|
|
1285
|
-
FLAGS
|
|
1286
|
-
--env-file=<value> Env file with secrets
|
|
1287
|
-
--force Delete and recreate existing secrets
|
|
1288
|
-
--non-interactive Run the command in non-interactive mode.
|
|
1289
|
-
--scope=(account|project) [default: project] Scope for the secrets
|
|
1290
|
-
|
|
1291
|
-
DESCRIPTION
|
|
1292
|
-
read environment secrets from env file and store on the server
|
|
1293
|
-
```
|
|
1294
|
-
|
|
1295
|
-
_See code: [packages/eas-cli/src/commands/secret/push.ts](https://github.com/expo/eas-cli/blob/v13.2.3/packages/eas-cli/src/commands/secret/push.ts)_
|
|
1426
|
+
_See code: [packages/eas-cli/src/commands/project/onboarding.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/project/onboarding.ts)_
|
|
1296
1427
|
|
|
1297
1428
|
## `eas submit`
|
|
1298
1429
|
|
|
@@ -1323,7 +1454,7 @@ ALIASES
|
|
|
1323
1454
|
$ eas build:submit
|
|
1324
1455
|
```
|
|
1325
1456
|
|
|
1326
|
-
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1457
|
+
_See code: [packages/eas-cli/src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/submit.ts)_
|
|
1327
1458
|
|
|
1328
1459
|
## `eas update`
|
|
1329
1460
|
|
|
@@ -1333,35 +1464,39 @@ publish an update group
|
|
|
1333
1464
|
USAGE
|
|
1334
1465
|
$ eas update [--branch <value>] [--channel <value>] [-m <value>] [--input-dir <value>] [--skip-bundler]
|
|
1335
1466
|
[--clear-cache] [--emit-metadata] [--rollout-percentage <value>] [-p android|ios|all] [--auto] [--private-key-path
|
|
1336
|
-
<value>] [--json --non-interactive]
|
|
1467
|
+
<value>] [--environment development|preview|production] [--json --non-interactive]
|
|
1337
1468
|
|
|
1338
1469
|
FLAGS
|
|
1339
|
-
-m, --message=<value>
|
|
1340
|
-
-p, --platform=(android|ios|all)
|
|
1341
|
-
--auto
|
|
1342
|
-
|
|
1343
|
-
--
|
|
1344
|
-
--
|
|
1345
|
-
--
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
--
|
|
1349
|
-
|
|
1350
|
-
--
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1470
|
+
-m, --message=<value> A short message describing the update
|
|
1471
|
+
-p, --platform=(android|ios|all) [default: all]
|
|
1472
|
+
--auto Use the current git branch and commit message for the EAS branch and
|
|
1473
|
+
update message
|
|
1474
|
+
--branch=<value> Branch to publish the update group on
|
|
1475
|
+
--channel=<value> Channel that the published update should affect
|
|
1476
|
+
--clear-cache Clear the bundler cache before publishing
|
|
1477
|
+
--emit-metadata Emit "eas-update-metadata.json" in the bundle folder with detailed
|
|
1478
|
+
information about the generated updates
|
|
1479
|
+
--environment=(development|preview|production) Environment to use for the server-side defined EAS environment
|
|
1480
|
+
variables during command execution.
|
|
1481
|
+
--input-dir=<value> [default: dist] Location of the bundle
|
|
1482
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr.
|
|
1483
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1484
|
+
--private-key-path=<value> File containing the PEM-encoded private key corresponding to the
|
|
1485
|
+
certificate in expo-updates' configuration. Defaults to a file named
|
|
1486
|
+
"private-key.pem" in the certificate's directory. Only relevant if you
|
|
1487
|
+
are using code signing: https://docs.expo.dev/eas-update/code-signing/
|
|
1488
|
+
--rollout-percentage=<value> Percentage of users this update should be immediately available to.
|
|
1489
|
+
Users not in the rollout will be served the previous latest update on
|
|
1490
|
+
the branch, even if that update is itself being rolled out. The
|
|
1491
|
+
specified number must be an integer between 1 and 100. When not
|
|
1492
|
+
specified, this defaults to 100.
|
|
1493
|
+
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
1359
1494
|
|
|
1360
1495
|
DESCRIPTION
|
|
1361
1496
|
publish an update group
|
|
1362
1497
|
```
|
|
1363
1498
|
|
|
1364
|
-
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1499
|
+
_See code: [packages/eas-cli/src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/index.ts)_
|
|
1365
1500
|
|
|
1366
1501
|
## `eas update:configure`
|
|
1367
1502
|
|
|
@@ -1369,17 +1504,19 @@ configure the project to support EAS Update
|
|
|
1369
1504
|
|
|
1370
1505
|
```
|
|
1371
1506
|
USAGE
|
|
1372
|
-
$ eas update:configure [-p android|ios|all] [--non-interactive]
|
|
1507
|
+
$ eas update:configure [-p android|ios|all] [--environment development|preview|production] [--non-interactive]
|
|
1373
1508
|
|
|
1374
1509
|
FLAGS
|
|
1375
|
-
-p, --platform=(android|ios|all)
|
|
1376
|
-
--
|
|
1510
|
+
-p, --platform=(android|ios|all) [default: all] Platform to configure
|
|
1511
|
+
--environment=(development|preview|production) Environment to use for the server-side defined EAS environment
|
|
1512
|
+
variables during command execution.
|
|
1513
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1377
1514
|
|
|
1378
1515
|
DESCRIPTION
|
|
1379
1516
|
configure the project to support EAS Update
|
|
1380
1517
|
```
|
|
1381
1518
|
|
|
1382
|
-
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1519
|
+
_See code: [packages/eas-cli/src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/configure.ts)_
|
|
1383
1520
|
|
|
1384
1521
|
## `eas update:delete GROUPID`
|
|
1385
1522
|
|
|
@@ -1400,7 +1537,7 @@ DESCRIPTION
|
|
|
1400
1537
|
delete all the updates in an update group
|
|
1401
1538
|
```
|
|
1402
1539
|
|
|
1403
|
-
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1540
|
+
_See code: [packages/eas-cli/src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/delete.ts)_
|
|
1404
1541
|
|
|
1405
1542
|
## `eas update:edit [GROUPID]`
|
|
1406
1543
|
|
|
@@ -1424,7 +1561,7 @@ DESCRIPTION
|
|
|
1424
1561
|
edit all the updates in an update group
|
|
1425
1562
|
```
|
|
1426
1563
|
|
|
1427
|
-
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1564
|
+
_See code: [packages/eas-cli/src/commands/update/edit.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/edit.ts)_
|
|
1428
1565
|
|
|
1429
1566
|
## `eas update:list`
|
|
1430
1567
|
|
|
@@ -1446,7 +1583,7 @@ DESCRIPTION
|
|
|
1446
1583
|
view the recent updates
|
|
1447
1584
|
```
|
|
1448
1585
|
|
|
1449
|
-
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1586
|
+
_See code: [packages/eas-cli/src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/list.ts)_
|
|
1450
1587
|
|
|
1451
1588
|
## `eas update:republish`
|
|
1452
1589
|
|
|
@@ -1478,7 +1615,7 @@ DESCRIPTION
|
|
|
1478
1615
|
roll back to an existing update
|
|
1479
1616
|
```
|
|
1480
1617
|
|
|
1481
|
-
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1618
|
+
_See code: [packages/eas-cli/src/commands/update/republish.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/republish.ts)_
|
|
1482
1619
|
|
|
1483
1620
|
## `eas update:roll-back-to-embedded`
|
|
1484
1621
|
|
|
@@ -1506,7 +1643,7 @@ DESCRIPTION
|
|
|
1506
1643
|
roll back to the embedded update
|
|
1507
1644
|
```
|
|
1508
1645
|
|
|
1509
|
-
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1646
|
+
_See code: [packages/eas-cli/src/commands/update/roll-back-to-embedded.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/roll-back-to-embedded.ts)_
|
|
1510
1647
|
|
|
1511
1648
|
## `eas update:rollback`
|
|
1512
1649
|
|
|
@@ -1526,7 +1663,7 @@ DESCRIPTION
|
|
|
1526
1663
|
roll back to an embedded update or an existing update
|
|
1527
1664
|
```
|
|
1528
1665
|
|
|
1529
|
-
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1666
|
+
_See code: [packages/eas-cli/src/commands/update/rollback.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/rollback.ts)_
|
|
1530
1667
|
|
|
1531
1668
|
## `eas update:view GROUPID`
|
|
1532
1669
|
|
|
@@ -1546,7 +1683,7 @@ DESCRIPTION
|
|
|
1546
1683
|
update group details
|
|
1547
1684
|
```
|
|
1548
1685
|
|
|
1549
|
-
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1686
|
+
_See code: [packages/eas-cli/src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/update/view.ts)_
|
|
1550
1687
|
|
|
1551
1688
|
## `eas webhook:create`
|
|
1552
1689
|
|
|
@@ -1567,7 +1704,7 @@ DESCRIPTION
|
|
|
1567
1704
|
create a webhook
|
|
1568
1705
|
```
|
|
1569
1706
|
|
|
1570
|
-
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1707
|
+
_See code: [packages/eas-cli/src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
1571
1708
|
|
|
1572
1709
|
## `eas webhook:delete [ID]`
|
|
1573
1710
|
|
|
@@ -1587,7 +1724,7 @@ DESCRIPTION
|
|
|
1587
1724
|
delete a webhook
|
|
1588
1725
|
```
|
|
1589
1726
|
|
|
1590
|
-
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1727
|
+
_See code: [packages/eas-cli/src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
1591
1728
|
|
|
1592
1729
|
## `eas webhook:list`
|
|
1593
1730
|
|
|
@@ -1605,7 +1742,7 @@ DESCRIPTION
|
|
|
1605
1742
|
list webhooks
|
|
1606
1743
|
```
|
|
1607
1744
|
|
|
1608
|
-
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1745
|
+
_See code: [packages/eas-cli/src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
1609
1746
|
|
|
1610
1747
|
## `eas webhook:update`
|
|
1611
1748
|
|
|
@@ -1627,7 +1764,7 @@ DESCRIPTION
|
|
|
1627
1764
|
update a webhook
|
|
1628
1765
|
```
|
|
1629
1766
|
|
|
1630
|
-
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1767
|
+
_See code: [packages/eas-cli/src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
1631
1768
|
|
|
1632
1769
|
## `eas webhook:view ID`
|
|
1633
1770
|
|
|
@@ -1644,7 +1781,7 @@ DESCRIPTION
|
|
|
1644
1781
|
view a webhook
|
|
1645
1782
|
```
|
|
1646
1783
|
|
|
1647
|
-
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.
|
|
1784
|
+
_See code: [packages/eas-cli/src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
1648
1785
|
|
|
1649
1786
|
## `eas whoami`
|
|
1650
1787
|
|
|
@@ -1660,4 +1797,64 @@ DESCRIPTION
|
|
|
1660
1797
|
ALIASES
|
|
1661
1798
|
$ eas whoami
|
|
1662
1799
|
```
|
|
1800
|
+
|
|
1801
|
+
## `eas workflow:create [NAME]`
|
|
1802
|
+
|
|
1803
|
+
create a new workflow configuration YAML file
|
|
1804
|
+
|
|
1805
|
+
```
|
|
1806
|
+
USAGE
|
|
1807
|
+
$ eas workflow:create [NAME] [--non-interactive]
|
|
1808
|
+
|
|
1809
|
+
ARGUMENTS
|
|
1810
|
+
NAME Name of the workflow file (must end with .yml or .yaml)
|
|
1811
|
+
|
|
1812
|
+
FLAGS
|
|
1813
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1814
|
+
|
|
1815
|
+
DESCRIPTION
|
|
1816
|
+
create a new workflow configuration YAML file
|
|
1817
|
+
```
|
|
1818
|
+
|
|
1819
|
+
_See code: [packages/eas-cli/src/commands/workflow/create.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/create.ts)_
|
|
1820
|
+
|
|
1821
|
+
## `eas workflow:run [FILE]`
|
|
1822
|
+
|
|
1823
|
+
Run an EAS workflow
|
|
1824
|
+
|
|
1825
|
+
```
|
|
1826
|
+
USAGE
|
|
1827
|
+
$ eas workflow:run [FILE] [--non-interactive]
|
|
1828
|
+
|
|
1829
|
+
ARGUMENTS
|
|
1830
|
+
FILE Path to the workflow file to run
|
|
1831
|
+
|
|
1832
|
+
FLAGS
|
|
1833
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1834
|
+
|
|
1835
|
+
DESCRIPTION
|
|
1836
|
+
Run an EAS workflow
|
|
1837
|
+
```
|
|
1838
|
+
|
|
1839
|
+
_See code: [packages/eas-cli/src/commands/workflow/run.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/run.ts)_
|
|
1840
|
+
|
|
1841
|
+
## `eas workflow:validate PATH`
|
|
1842
|
+
|
|
1843
|
+
validate a workflow configuration yaml file
|
|
1844
|
+
|
|
1845
|
+
```
|
|
1846
|
+
USAGE
|
|
1847
|
+
$ eas workflow:validate PATH [--non-interactive]
|
|
1848
|
+
|
|
1849
|
+
ARGUMENTS
|
|
1850
|
+
PATH Path to the workflow configuration YAML file (must end with .yml or .yaml)
|
|
1851
|
+
|
|
1852
|
+
FLAGS
|
|
1853
|
+
--non-interactive Run the command in non-interactive mode.
|
|
1854
|
+
|
|
1855
|
+
DESCRIPTION
|
|
1856
|
+
validate a workflow configuration yaml file
|
|
1857
|
+
```
|
|
1858
|
+
|
|
1859
|
+
_See code: [packages/eas-cli/src/commands/workflow/validate.ts](https://github.com/expo/eas-cli/blob/v13.4.0/packages/eas-cli/src/commands/workflow/validate.ts)_
|
|
1663
1860
|
<!-- commandsstop -->
|