eas-cli 0.39.0 → 0.42.3
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 +457 -104
- package/bin/run +3 -4
- package/build/api.d.ts +1 -0
- package/build/api.js +13 -1
- package/build/build/build.js +3 -3
- package/build/build/configure.js +3 -3
- package/build/build/context.d.ts +2 -1
- package/build/build/createContext.d.ts +3 -2
- package/build/build/createContext.js +3 -3
- package/build/build/local.d.ts +9 -1
- package/build/build/local.js +35 -5
- package/build/build/runBuildAndSubmit.d.ts +15 -0
- package/build/build/runBuildAndSubmit.js +173 -0
- package/build/build/utils/devClient.js +3 -3
- package/build/commandUtils/EasCommand.d.ts +2 -1
- package/build/commandUtils/EasCommand.js +7 -4
- package/build/commands/account/login.d.ts +1 -0
- package/build/commands/account/login.js +1 -0
- package/build/commands/account/logout.d.ts +1 -0
- package/build/commands/account/logout.js +1 -0
- package/build/commands/account/view.d.ts +1 -0
- package/build/commands/account/view.js +1 -0
- package/build/commands/analytics.js +1 -1
- package/build/commands/branch/create.d.ts +1 -2
- package/build/commands/branch/create.js +3 -4
- package/build/commands/branch/delete.d.ts +1 -2
- package/build/commands/branch/delete.js +4 -5
- package/build/commands/branch/list.d.ts +1 -2
- package/build/commands/branch/list.js +4 -5
- package/build/commands/branch/publish.d.ts +1 -18
- package/build/commands/branch/publish.js +2 -354
- package/build/commands/branch/rename.d.ts +3 -5
- package/build/commands/branch/rename.js +5 -6
- package/build/commands/branch/view.d.ts +1 -2
- package/build/commands/branch/view.js +3 -4
- package/build/commands/build/cancel.js +1 -1
- package/build/commands/build/configure.d.ts +1 -2
- package/build/commands/build/configure.js +3 -3
- package/build/commands/build/index.d.ts +11 -17
- package/build/commands/build/index.js +28 -178
- package/build/commands/build/inspect.d.ts +21 -0
- package/build/commands/build/inspect.js +129 -0
- package/build/commands/build/list.d.ts +13 -14
- package/build/commands/build/list.js +15 -15
- package/build/commands/build/view.d.ts +1 -1
- package/build/commands/build/view.js +3 -3
- package/build/commands/channel/create.d.ts +1 -2
- package/build/commands/channel/create.js +3 -4
- package/build/commands/channel/edit.d.ts +2 -4
- package/build/commands/channel/edit.js +4 -5
- package/build/commands/channel/list.d.ts +1 -2
- package/build/commands/channel/list.js +3 -4
- package/build/commands/channel/rollout.d.ts +4 -5
- package/build/commands/channel/rollout.js +6 -7
- package/build/commands/channel/view.d.ts +1 -2
- package/build/commands/channel/view.js +3 -4
- package/build/commands/config.d.ts +2 -3
- package/build/commands/config.js +4 -4
- package/build/commands/credentials.js +1 -7
- package/build/commands/device/list.d.ts +1 -2
- package/build/commands/device/list.js +3 -3
- package/build/commands/device/view.js +1 -1
- package/build/commands/diagnostics.js +1 -0
- package/build/commands/secret/create.d.ts +4 -5
- package/build/commands/secret/create.js +6 -6
- package/build/commands/secret/delete.d.ts +1 -2
- package/build/commands/secret/delete.js +3 -3
- package/build/commands/submit.d.ts +9 -10
- package/build/commands/submit.js +14 -15
- package/build/commands/update/configure.d.ts +0 -2
- package/build/commands/update/configure.js +14 -14
- package/build/commands/update/delete.d.ts +1 -2
- package/build/commands/update/delete.js +3 -4
- package/build/commands/update/index.d.ts +18 -0
- package/build/commands/update/index.js +392 -0
- package/build/commands/update/view.d.ts +1 -2
- package/build/commands/update/view.js +3 -4
- package/build/commands/webhook/create.d.ts +3 -4
- package/build/commands/webhook/create.js +5 -5
- package/build/commands/webhook/delete.js +1 -1
- package/build/commands/webhook/list.d.ts +1 -2
- package/build/commands/webhook/list.js +3 -3
- package/build/commands/webhook/update.d.ts +4 -5
- package/build/commands/webhook/update.js +6 -6
- package/build/commands/webhook/view.js +1 -1
- package/build/credentials/context.d.ts +5 -0
- package/build/credentials/context.js +12 -7
- package/build/credentials/manager/ManageAndroid.d.ts +3 -3
- package/build/credentials/manager/ManageAndroid.js +21 -13
- package/build/credentials/manager/ManageIos.d.ts +3 -3
- package/build/credentials/manager/ManageIos.js +23 -13
- package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +2 -3
- package/build/credentials/manager/SelectBuildProfileFromEasJson.js +3 -6
- package/build/credentials/manager/SelectPlatform.d.ts +1 -2
- package/build/credentials/manager/SelectPlatform.js +3 -3
- package/build/graphql/generated.d.ts +31 -11
- package/build/graphql/generated.js +6 -1
- package/build/graphql/types/Submission.js +1 -0
- package/build/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/build/project/expoSdk.d.ts +3 -0
- package/build/project/expoSdk.js +30 -0
- package/build/project/metroConfig.js +2 -2
- package/build/project/publish.js +1 -3
- package/build/prompts.d.ts +3 -3
- package/build/submit/context.js +0 -1
- package/build/submit/ios/IosSubmitCommand.js +6 -1
- package/build/submit/utils/urls.js +1 -1
- package/build/update/utils.js +4 -4
- package/build/user/actions.js +2 -2
- package/build/utils/expoCli.d.ts +3 -1
- package/build/utils/expoCli.js +13 -11
- package/build/utils/profiles.d.ts +1 -1
- package/build/utils/profiles.js +80 -30
- package/build/vcs/clients/git.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +16 -12
package/README.md
CHANGED
|
@@ -37,11 +37,21 @@ eas --help COMMAND
|
|
|
37
37
|
* [`eas account:logout`](#eas-accountlogout)
|
|
38
38
|
* [`eas account:view`](#eas-accountview)
|
|
39
39
|
* [`eas analytics [STATUS]`](#eas-analytics-status)
|
|
40
|
+
* [`eas branch:create [NAME]`](#eas-branchcreate-name)
|
|
41
|
+
* [`eas branch:delete [NAME]`](#eas-branchdelete-name)
|
|
42
|
+
* [`eas branch:list`](#eas-branchlist)
|
|
43
|
+
* [`eas branch:rename`](#eas-branchrename)
|
|
44
|
+
* [`eas branch:view [NAME]`](#eas-branchview-name)
|
|
40
45
|
* [`eas build`](#eas-build)
|
|
41
46
|
* [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
|
|
42
47
|
* [`eas build:configure`](#eas-buildconfigure)
|
|
48
|
+
* [`eas build:inspect`](#eas-buildinspect)
|
|
43
49
|
* [`eas build:list`](#eas-buildlist)
|
|
44
50
|
* [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
|
|
51
|
+
* [`eas channel:create [NAME]`](#eas-channelcreate-name)
|
|
52
|
+
* [`eas channel:edit [NAME]`](#eas-channeledit-name)
|
|
53
|
+
* [`eas channel:list`](#eas-channellist)
|
|
54
|
+
* [`eas channel:view [NAME]`](#eas-channelview-name)
|
|
45
55
|
* [`eas config`](#eas-config)
|
|
46
56
|
* [`eas credentials`](#eas-credentials)
|
|
47
57
|
* [`eas device:create`](#eas-devicecreate)
|
|
@@ -55,7 +65,10 @@ eas --help COMMAND
|
|
|
55
65
|
* [`eas secret:delete`](#eas-secretdelete)
|
|
56
66
|
* [`eas secret:list`](#eas-secretlist)
|
|
57
67
|
* [`eas submit`](#eas-submit)
|
|
68
|
+
* [`eas update`](#eas-update)
|
|
58
69
|
* [`eas update:configure`](#eas-updateconfigure)
|
|
70
|
+
* [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
|
|
71
|
+
* [`eas update:view GROUPID`](#eas-updateview-groupid)
|
|
59
72
|
* [`eas webhook:create`](#eas-webhookcreate)
|
|
60
73
|
* [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
|
|
61
74
|
* [`eas webhook:list`](#eas-webhooklist)
|
|
@@ -70,11 +83,14 @@ log in with your Expo account
|
|
|
70
83
|
USAGE
|
|
71
84
|
$ eas account:login
|
|
72
85
|
|
|
86
|
+
DESCRIPTION
|
|
87
|
+
log in with your Expo account
|
|
88
|
+
|
|
73
89
|
ALIASES
|
|
74
90
|
$ eas login
|
|
75
91
|
```
|
|
76
92
|
|
|
77
|
-
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
93
|
+
_See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/login.ts)_
|
|
78
94
|
|
|
79
95
|
## `eas account:logout`
|
|
80
96
|
|
|
@@ -84,11 +100,14 @@ log out
|
|
|
84
100
|
USAGE
|
|
85
101
|
$ eas account:logout
|
|
86
102
|
|
|
103
|
+
DESCRIPTION
|
|
104
|
+
log out
|
|
105
|
+
|
|
87
106
|
ALIASES
|
|
88
107
|
$ eas logout
|
|
89
108
|
```
|
|
90
109
|
|
|
91
|
-
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
110
|
+
_See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/logout.ts)_
|
|
92
111
|
|
|
93
112
|
## `eas account:view`
|
|
94
113
|
|
|
@@ -98,11 +117,14 @@ show the username you are logged in as
|
|
|
98
117
|
USAGE
|
|
99
118
|
$ eas account:view
|
|
100
119
|
|
|
120
|
+
DESCRIPTION
|
|
121
|
+
show the username you are logged in as
|
|
122
|
+
|
|
101
123
|
ALIASES
|
|
102
124
|
$ eas whoami
|
|
103
125
|
```
|
|
104
126
|
|
|
105
|
-
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
127
|
+
_See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/account/view.ts)_
|
|
106
128
|
|
|
107
129
|
## `eas analytics [STATUS]`
|
|
108
130
|
|
|
@@ -111,43 +133,137 @@ view or change analytics settings
|
|
|
111
133
|
```
|
|
112
134
|
USAGE
|
|
113
135
|
$ eas analytics [STATUS]
|
|
136
|
+
|
|
137
|
+
DESCRIPTION
|
|
138
|
+
view or change analytics settings
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
_See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/analytics.ts)_
|
|
142
|
+
|
|
143
|
+
## `eas branch:create [NAME]`
|
|
144
|
+
|
|
145
|
+
Create a branch on the current project.
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
USAGE
|
|
149
|
+
$ eas branch:create [NAME] [--json]
|
|
150
|
+
|
|
151
|
+
ARGUMENTS
|
|
152
|
+
NAME Name of the branch to create
|
|
153
|
+
|
|
154
|
+
FLAGS
|
|
155
|
+
--json return a json with the new branch ID and name.
|
|
156
|
+
|
|
157
|
+
DESCRIPTION
|
|
158
|
+
Create a branch on the current project.
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
_See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/create.ts)_
|
|
162
|
+
|
|
163
|
+
## `eas branch:delete [NAME]`
|
|
164
|
+
|
|
165
|
+
Delete a branch on the current project
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
USAGE
|
|
169
|
+
$ eas branch:delete [NAME] [--json]
|
|
170
|
+
|
|
171
|
+
ARGUMENTS
|
|
172
|
+
NAME Name of the branch to delete
|
|
173
|
+
|
|
174
|
+
FLAGS
|
|
175
|
+
--json return JSON with the edited branch's ID and name.
|
|
176
|
+
|
|
177
|
+
DESCRIPTION
|
|
178
|
+
Delete a branch on the current project
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
_See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/delete.ts)_
|
|
182
|
+
|
|
183
|
+
## `eas branch:list`
|
|
184
|
+
|
|
185
|
+
List all branches on this project.
|
|
186
|
+
|
|
187
|
+
```
|
|
188
|
+
USAGE
|
|
189
|
+
$ eas branch:list [--json]
|
|
190
|
+
|
|
191
|
+
FLAGS
|
|
192
|
+
--json return output as JSON
|
|
193
|
+
|
|
194
|
+
DESCRIPTION
|
|
195
|
+
List all branches on this project.
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
_See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/list.ts)_
|
|
199
|
+
|
|
200
|
+
## `eas branch:rename`
|
|
201
|
+
|
|
202
|
+
Rename a branch.
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
USAGE
|
|
206
|
+
$ eas branch:rename [--from <value>] [--to <value>] [--json]
|
|
207
|
+
|
|
208
|
+
FLAGS
|
|
209
|
+
--from=<value> current name of the branch.
|
|
210
|
+
--json return a json with the edited branch's ID and name.
|
|
211
|
+
--to=<value> new name of the branch.
|
|
212
|
+
|
|
213
|
+
DESCRIPTION
|
|
214
|
+
Rename a branch.
|
|
215
|
+
```
|
|
216
|
+
|
|
217
|
+
_See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/rename.ts)_
|
|
218
|
+
|
|
219
|
+
## `eas branch:view [NAME]`
|
|
220
|
+
|
|
221
|
+
View a branch.
|
|
222
|
+
|
|
223
|
+
```
|
|
224
|
+
USAGE
|
|
225
|
+
$ eas branch:view [NAME] [--json]
|
|
226
|
+
|
|
227
|
+
ARGUMENTS
|
|
228
|
+
NAME Name of the branch to view
|
|
229
|
+
|
|
230
|
+
FLAGS
|
|
231
|
+
--json return a json with the branch's ID name and recent update groups.
|
|
232
|
+
|
|
233
|
+
DESCRIPTION
|
|
234
|
+
View a branch.
|
|
114
235
|
```
|
|
115
236
|
|
|
116
|
-
_See code: [src/commands/
|
|
237
|
+
_See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/branch/view.ts)_
|
|
117
238
|
|
|
118
239
|
## `eas build`
|
|
119
240
|
|
|
120
|
-
|
|
241
|
+
Start a build
|
|
121
242
|
|
|
122
243
|
```
|
|
123
244
|
USAGE
|
|
124
|
-
$ eas build
|
|
245
|
+
$ eas build [-p android|ios|all] [--json] [--skip-project-configuration] [--profile <value>]
|
|
246
|
+
[--non-interactive] [--local] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>]
|
|
125
247
|
|
|
126
|
-
|
|
248
|
+
FLAGS
|
|
127
249
|
-p, --platform=(android|ios|all)
|
|
128
|
-
|
|
129
250
|
--auto-submit Submit on build complete using the submit profile with the same name as the
|
|
130
251
|
build profile
|
|
131
|
-
|
|
132
252
|
--auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
|
|
133
|
-
|
|
134
253
|
--clear-cache Clear cache before the build
|
|
135
|
-
|
|
136
254
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
137
|
-
|
|
138
255
|
--local Run build locally [experimental]
|
|
139
|
-
|
|
140
256
|
--non-interactive Run command in non-interactive mode
|
|
141
|
-
|
|
142
257
|
--profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
|
|
143
258
|
in eas.json.
|
|
144
|
-
|
|
145
259
|
--skip-project-configuration Skip project configuration
|
|
146
|
-
|
|
147
260
|
--[no-]wait Wait for build(s) to complete
|
|
261
|
+
|
|
262
|
+
DESCRIPTION
|
|
263
|
+
Start a build
|
|
148
264
|
```
|
|
149
265
|
|
|
150
|
-
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
266
|
+
_See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/index.ts)_
|
|
151
267
|
|
|
152
268
|
## `eas build:cancel [BUILD_ID]`
|
|
153
269
|
|
|
@@ -156,9 +272,12 @@ Cancel a build.
|
|
|
156
272
|
```
|
|
157
273
|
USAGE
|
|
158
274
|
$ eas build:cancel [BUILD_ID]
|
|
275
|
+
|
|
276
|
+
DESCRIPTION
|
|
277
|
+
Cancel a build.
|
|
159
278
|
```
|
|
160
279
|
|
|
161
|
-
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
280
|
+
_See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/cancel.ts)_
|
|
162
281
|
|
|
163
282
|
## `eas build:configure`
|
|
164
283
|
|
|
@@ -166,46 +285,85 @@ Configure the project to support EAS Build.
|
|
|
166
285
|
|
|
167
286
|
```
|
|
168
287
|
USAGE
|
|
169
|
-
$ eas build:configure
|
|
288
|
+
$ eas build:configure [-p android|ios|all]
|
|
170
289
|
|
|
171
|
-
|
|
290
|
+
FLAGS
|
|
172
291
|
-p, --platform=(android|ios|all) Platform to configure
|
|
292
|
+
|
|
293
|
+
DESCRIPTION
|
|
294
|
+
Configure the project to support EAS Build.
|
|
173
295
|
```
|
|
174
296
|
|
|
175
|
-
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
297
|
+
_See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/configure.ts)_
|
|
176
298
|
|
|
177
|
-
## `eas build:
|
|
299
|
+
## `eas build:inspect`
|
|
178
300
|
|
|
179
|
-
|
|
301
|
+
Inspect the state of the project at specific build stages. Useful for troubleshooting.
|
|
180
302
|
|
|
181
303
|
```
|
|
182
304
|
USAGE
|
|
183
|
-
$ eas build:
|
|
305
|
+
$ eas build:inspect -p android|ios -s archive|pre-build|post-build --output <value> [--profile <value>] [--force]
|
|
306
|
+
[--verbose]
|
|
184
307
|
|
|
185
|
-
|
|
186
|
-
--
|
|
187
|
-
|
|
188
|
-
--appVersion=appVersion
|
|
189
|
-
--buildProfile=buildProfile
|
|
190
|
-
--channel=channel
|
|
191
|
-
--distribution=(store|internal|simulator)
|
|
192
|
-
--gitCommitHash=gitCommitHash
|
|
308
|
+
FLAGS
|
|
309
|
+
-p, --platform=(android|ios)
|
|
310
|
+
(required)
|
|
193
311
|
|
|
194
|
-
|
|
195
|
-
|
|
312
|
+
-s, --stage=(archive|pre-build|post-build)
|
|
313
|
+
(required) Stage of the build you want to inspect.
|
|
314
|
+
archive - builds the project archive that would be uploaded to EAS when building
|
|
315
|
+
pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
|
|
316
|
+
post-build - builds the native project and leaves the output directory for inspection
|
|
196
317
|
|
|
197
|
-
--
|
|
318
|
+
--force
|
|
319
|
+
Delete OUTPUT_DIRECTORY if it already exists.
|
|
198
320
|
|
|
199
|
-
--
|
|
321
|
+
--output=OUTPUT_DIRECTORY
|
|
322
|
+
(required) Output directory.
|
|
323
|
+
|
|
324
|
+
--profile=PROFILE_NAME
|
|
325
|
+
Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
|
|
326
|
+
|
|
327
|
+
--verbose
|
|
328
|
+
|
|
329
|
+
DESCRIPTION
|
|
330
|
+
Inspect the state of the project at specific build stages. Useful for troubleshooting.
|
|
331
|
+
```
|
|
200
332
|
|
|
201
|
-
|
|
333
|
+
_See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/inspect.ts)_
|
|
202
334
|
|
|
203
|
-
|
|
335
|
+
## `eas build:list`
|
|
336
|
+
|
|
337
|
+
list all builds for your project
|
|
204
338
|
|
|
339
|
+
```
|
|
340
|
+
USAGE
|
|
341
|
+
$ eas build:list [--platform all|android|ios] [--json] [--status
|
|
342
|
+
new|in-queue|in-progress|errored|finished|canceled] [--distribution store|internal|simulator] [--channel <value>]
|
|
343
|
+
[--appVersion <value>] [--appBuildVersion <value>] [--sdkVersion <value>] [--runtimeVersion <value>]
|
|
344
|
+
[--appIdentifier <value>] [--buildProfile <value>] [--gitCommitHash <value>] [--limit <value>]
|
|
345
|
+
|
|
346
|
+
FLAGS
|
|
347
|
+
--appBuildVersion=<value>
|
|
348
|
+
--appIdentifier=<value>
|
|
349
|
+
--appVersion=<value>
|
|
350
|
+
--buildProfile=<value>
|
|
351
|
+
--channel=<value>
|
|
352
|
+
--distribution=(store|internal|simulator)
|
|
353
|
+
--gitCommitHash=<value>
|
|
354
|
+
--json Enable JSON output, non-JSON messages will be printed
|
|
355
|
+
to stderr
|
|
356
|
+
--limit=<value>
|
|
357
|
+
--platform=(all|android|ios)
|
|
358
|
+
--runtimeVersion=<value>
|
|
359
|
+
--sdkVersion=<value>
|
|
205
360
|
--status=(new|in-queue|in-progress|errored|finished|canceled)
|
|
361
|
+
|
|
362
|
+
DESCRIPTION
|
|
363
|
+
list all builds for your project
|
|
206
364
|
```
|
|
207
365
|
|
|
208
|
-
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
366
|
+
_See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/list.ts)_
|
|
209
367
|
|
|
210
368
|
## `eas build:view [BUILD_ID]`
|
|
211
369
|
|
|
@@ -213,13 +371,94 @@ view a build for your project
|
|
|
213
371
|
|
|
214
372
|
```
|
|
215
373
|
USAGE
|
|
216
|
-
$ eas build:view [BUILD_ID]
|
|
374
|
+
$ eas build:view [BUILD_ID] [--json]
|
|
217
375
|
|
|
218
|
-
|
|
376
|
+
FLAGS
|
|
219
377
|
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
378
|
+
|
|
379
|
+
DESCRIPTION
|
|
380
|
+
view a build for your project
|
|
381
|
+
```
|
|
382
|
+
|
|
383
|
+
_See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/build/view.ts)_
|
|
384
|
+
|
|
385
|
+
## `eas channel:create [NAME]`
|
|
386
|
+
|
|
387
|
+
Create a channel on the current project.
|
|
388
|
+
|
|
220
389
|
```
|
|
390
|
+
USAGE
|
|
391
|
+
$ eas channel:create [NAME] [--json]
|
|
392
|
+
|
|
393
|
+
ARGUMENTS
|
|
394
|
+
NAME Name of the channel to create
|
|
221
395
|
|
|
222
|
-
|
|
396
|
+
FLAGS
|
|
397
|
+
--json print output as a JSON object with the new channel ID, name and branch mapping.
|
|
398
|
+
|
|
399
|
+
DESCRIPTION
|
|
400
|
+
Create a channel on the current project.
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
_See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/create.ts)_
|
|
404
|
+
|
|
405
|
+
## `eas channel:edit [NAME]`
|
|
406
|
+
|
|
407
|
+
Point a channel at a new branch.
|
|
408
|
+
|
|
409
|
+
```
|
|
410
|
+
USAGE
|
|
411
|
+
$ eas channel:edit [NAME] [--branch <value>] [--json]
|
|
412
|
+
|
|
413
|
+
ARGUMENTS
|
|
414
|
+
NAME Name of the channel to edit
|
|
415
|
+
|
|
416
|
+
FLAGS
|
|
417
|
+
--branch=<value> Name of the branch to point to
|
|
418
|
+
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
419
|
+
|
|
420
|
+
DESCRIPTION
|
|
421
|
+
Point a channel at a new branch.
|
|
422
|
+
```
|
|
423
|
+
|
|
424
|
+
_See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/edit.ts)_
|
|
425
|
+
|
|
426
|
+
## `eas channel:list`
|
|
427
|
+
|
|
428
|
+
List all channels on the current project.
|
|
429
|
+
|
|
430
|
+
```
|
|
431
|
+
USAGE
|
|
432
|
+
$ eas channel:list [--json]
|
|
433
|
+
|
|
434
|
+
FLAGS
|
|
435
|
+
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
436
|
+
|
|
437
|
+
DESCRIPTION
|
|
438
|
+
List all channels on the current project.
|
|
439
|
+
```
|
|
440
|
+
|
|
441
|
+
_See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/list.ts)_
|
|
442
|
+
|
|
443
|
+
## `eas channel:view [NAME]`
|
|
444
|
+
|
|
445
|
+
View a channel on the current project.
|
|
446
|
+
|
|
447
|
+
```
|
|
448
|
+
USAGE
|
|
449
|
+
$ eas channel:view [NAME] [--json]
|
|
450
|
+
|
|
451
|
+
ARGUMENTS
|
|
452
|
+
NAME Name of the channel to view
|
|
453
|
+
|
|
454
|
+
FLAGS
|
|
455
|
+
--json print output as a JSON object with the channel ID, name and branch mapping.
|
|
456
|
+
|
|
457
|
+
DESCRIPTION
|
|
458
|
+
View a channel on the current project.
|
|
459
|
+
```
|
|
460
|
+
|
|
461
|
+
_See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/channel/view.ts)_
|
|
223
462
|
|
|
224
463
|
## `eas config`
|
|
225
464
|
|
|
@@ -227,14 +466,17 @@ show the eas.json config
|
|
|
227
466
|
|
|
228
467
|
```
|
|
229
468
|
USAGE
|
|
230
|
-
$ eas config
|
|
469
|
+
$ eas config [-p android|ios] [--profile <value>]
|
|
231
470
|
|
|
232
|
-
|
|
471
|
+
FLAGS
|
|
233
472
|
-p, --platform=(android|ios)
|
|
234
|
-
--profile
|
|
473
|
+
--profile=<value>
|
|
474
|
+
|
|
475
|
+
DESCRIPTION
|
|
476
|
+
show the eas.json config
|
|
235
477
|
```
|
|
236
478
|
|
|
237
|
-
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
479
|
+
_See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/config.ts)_
|
|
238
480
|
|
|
239
481
|
## `eas credentials`
|
|
240
482
|
|
|
@@ -243,9 +485,12 @@ manage your credentials
|
|
|
243
485
|
```
|
|
244
486
|
USAGE
|
|
245
487
|
$ eas credentials
|
|
488
|
+
|
|
489
|
+
DESCRIPTION
|
|
490
|
+
manage your credentials
|
|
246
491
|
```
|
|
247
492
|
|
|
248
|
-
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
493
|
+
_See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/credentials.ts)_
|
|
249
494
|
|
|
250
495
|
## `eas device:create`
|
|
251
496
|
|
|
@@ -254,9 +499,12 @@ register new Apple Devices to use for internal distribution
|
|
|
254
499
|
```
|
|
255
500
|
USAGE
|
|
256
501
|
$ eas device:create
|
|
502
|
+
|
|
503
|
+
DESCRIPTION
|
|
504
|
+
register new Apple Devices to use for internal distribution
|
|
257
505
|
```
|
|
258
506
|
|
|
259
|
-
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
507
|
+
_See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/create.ts)_
|
|
260
508
|
|
|
261
509
|
## `eas device:list`
|
|
262
510
|
|
|
@@ -264,13 +512,16 @@ list all registered devices for your account
|
|
|
264
512
|
|
|
265
513
|
```
|
|
266
514
|
USAGE
|
|
267
|
-
$ eas device:list
|
|
515
|
+
$ eas device:list [--apple-team-id <value>]
|
|
268
516
|
|
|
269
|
-
|
|
270
|
-
--apple-team-id
|
|
517
|
+
FLAGS
|
|
518
|
+
--apple-team-id=<value>
|
|
519
|
+
|
|
520
|
+
DESCRIPTION
|
|
521
|
+
list all registered devices for your account
|
|
271
522
|
```
|
|
272
523
|
|
|
273
|
-
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
524
|
+
_See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/list.ts)_
|
|
274
525
|
|
|
275
526
|
## `eas device:view [UDID]`
|
|
276
527
|
|
|
@@ -279,9 +530,12 @@ view a device for your project
|
|
|
279
530
|
```
|
|
280
531
|
USAGE
|
|
281
532
|
$ eas device:view [UDID]
|
|
533
|
+
|
|
534
|
+
DESCRIPTION
|
|
535
|
+
view a device for your project
|
|
282
536
|
```
|
|
283
537
|
|
|
284
|
-
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
538
|
+
_See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/device/view.ts)_
|
|
285
539
|
|
|
286
540
|
## `eas diagnostics`
|
|
287
541
|
|
|
@@ -290,26 +544,32 @@ log environment info to the console
|
|
|
290
544
|
```
|
|
291
545
|
USAGE
|
|
292
546
|
$ eas diagnostics
|
|
547
|
+
|
|
548
|
+
DESCRIPTION
|
|
549
|
+
log environment info to the console
|
|
293
550
|
```
|
|
294
551
|
|
|
295
|
-
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
552
|
+
_See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/diagnostics.ts)_
|
|
296
553
|
|
|
297
554
|
## `eas help [COMMAND]`
|
|
298
555
|
|
|
299
|
-
|
|
556
|
+
Display help for eas.
|
|
300
557
|
|
|
301
558
|
```
|
|
302
559
|
USAGE
|
|
303
|
-
$ eas help [COMMAND]
|
|
560
|
+
$ eas help [COMMAND] [-n]
|
|
304
561
|
|
|
305
562
|
ARGUMENTS
|
|
306
|
-
COMMAND
|
|
563
|
+
COMMAND Command to show help for.
|
|
564
|
+
|
|
565
|
+
FLAGS
|
|
566
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
307
567
|
|
|
308
|
-
|
|
309
|
-
|
|
568
|
+
DESCRIPTION
|
|
569
|
+
Display help for eas.
|
|
310
570
|
```
|
|
311
571
|
|
|
312
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/
|
|
572
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.9/src/commands/help.ts)_
|
|
313
573
|
|
|
314
574
|
## `eas project:info`
|
|
315
575
|
|
|
@@ -318,9 +578,12 @@ information about the current project
|
|
|
318
578
|
```
|
|
319
579
|
USAGE
|
|
320
580
|
$ eas project:info
|
|
581
|
+
|
|
582
|
+
DESCRIPTION
|
|
583
|
+
information about the current project
|
|
321
584
|
```
|
|
322
585
|
|
|
323
|
-
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
586
|
+
_See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/project/info.ts)_
|
|
324
587
|
|
|
325
588
|
## `eas project:init`
|
|
326
589
|
|
|
@@ -330,11 +593,14 @@ create or link an EAS project
|
|
|
330
593
|
USAGE
|
|
331
594
|
$ eas project:init
|
|
332
595
|
|
|
596
|
+
DESCRIPTION
|
|
597
|
+
create or link an EAS project
|
|
598
|
+
|
|
333
599
|
ALIASES
|
|
334
600
|
$ eas init
|
|
335
601
|
```
|
|
336
602
|
|
|
337
|
-
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
603
|
+
_See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/project/init.ts)_
|
|
338
604
|
|
|
339
605
|
## `eas secret:create`
|
|
340
606
|
|
|
@@ -342,16 +608,19 @@ Create an environment secret on the current project or owner account.
|
|
|
342
608
|
|
|
343
609
|
```
|
|
344
610
|
USAGE
|
|
345
|
-
$ eas secret:create
|
|
611
|
+
$ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
|
|
346
612
|
|
|
347
|
-
|
|
613
|
+
FLAGS
|
|
348
614
|
--force Delete and recreate existing secrets
|
|
349
|
-
--name
|
|
615
|
+
--name=<value> Name of the secret
|
|
350
616
|
--scope=(account|project) [default: project] Scope for the secret
|
|
351
|
-
--value
|
|
617
|
+
--value=<value> Value of the secret
|
|
618
|
+
|
|
619
|
+
DESCRIPTION
|
|
620
|
+
Create an environment secret on the current project or owner account.
|
|
352
621
|
```
|
|
353
622
|
|
|
354
|
-
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
623
|
+
_See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/create.ts)_
|
|
355
624
|
|
|
356
625
|
## `eas secret:delete`
|
|
357
626
|
|
|
@@ -359,16 +628,18 @@ Delete an environment secret by ID.
|
|
|
359
628
|
|
|
360
629
|
```
|
|
361
630
|
USAGE
|
|
362
|
-
$ eas secret:delete
|
|
631
|
+
$ eas secret:delete [--id <value>]
|
|
363
632
|
|
|
364
|
-
|
|
365
|
-
--id
|
|
633
|
+
FLAGS
|
|
634
|
+
--id=<value> ID of the secret to delete
|
|
366
635
|
|
|
367
636
|
DESCRIPTION
|
|
637
|
+
Delete an environment secret by ID.
|
|
638
|
+
|
|
368
639
|
Unsure where to find the secret's ID? Run eas secret:list
|
|
369
640
|
```
|
|
370
641
|
|
|
371
|
-
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
642
|
+
_See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/delete.ts)_
|
|
372
643
|
|
|
373
644
|
## `eas secret:list`
|
|
374
645
|
|
|
@@ -377,42 +648,70 @@ Lists environment secrets available for your current app
|
|
|
377
648
|
```
|
|
378
649
|
USAGE
|
|
379
650
|
$ eas secret:list
|
|
651
|
+
|
|
652
|
+
DESCRIPTION
|
|
653
|
+
Lists environment secrets available for your current app
|
|
380
654
|
```
|
|
381
655
|
|
|
382
|
-
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
656
|
+
_See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/secret/list.ts)_
|
|
383
657
|
|
|
384
658
|
## `eas submit`
|
|
385
659
|
|
|
386
|
-
|
|
660
|
+
Submit build archive to App Store Connect
|
|
387
661
|
|
|
388
662
|
```
|
|
389
663
|
USAGE
|
|
390
|
-
$ eas submit
|
|
664
|
+
$ eas submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
|
|
665
|
+
<value>] [--verbose] [--wait] [--non-interactive]
|
|
391
666
|
|
|
392
|
-
|
|
667
|
+
FLAGS
|
|
393
668
|
-p, --platform=(android|ios|all)
|
|
394
|
-
--id
|
|
669
|
+
--id=<value> ID of the build to submit
|
|
395
670
|
--latest Submit the latest build for specified platform
|
|
396
671
|
--non-interactive Run command in non-interactive mode
|
|
397
|
-
--path
|
|
398
|
-
|
|
399
|
-
--profile=profile Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
672
|
+
--path=<value> Path to the .apk/.aab/.ipa file
|
|
673
|
+
--profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
|
|
400
674
|
eas.json.
|
|
401
|
-
|
|
402
|
-
--url=url App archive url
|
|
403
|
-
|
|
675
|
+
--url=<value> App archive url
|
|
404
676
|
--verbose Always print logs from Submission Service
|
|
405
|
-
|
|
406
677
|
--[no-]wait Wait for submission to complete
|
|
407
678
|
|
|
408
679
|
DESCRIPTION
|
|
680
|
+
Submit build archive to App Store Connect
|
|
681
|
+
|
|
409
682
|
See how to configure submits with eas.json: https://docs.expo.dev/submit/eas-json/
|
|
410
683
|
|
|
411
684
|
ALIASES
|
|
412
685
|
$ eas build:submit
|
|
413
686
|
```
|
|
414
687
|
|
|
415
|
-
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
688
|
+
_See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/submit.ts)_
|
|
689
|
+
|
|
690
|
+
## `eas update`
|
|
691
|
+
|
|
692
|
+
Publish an update group.
|
|
693
|
+
|
|
694
|
+
```
|
|
695
|
+
USAGE
|
|
696
|
+
$ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
|
|
697
|
+
[--group <value> | | ] [-p android|ios|all] [--json] [--auto]
|
|
698
|
+
|
|
699
|
+
FLAGS
|
|
700
|
+
-p, --platform=(android|ios|all) [default: all]
|
|
701
|
+
--auto Use the current git branch and commit message for the EAS branch and update message
|
|
702
|
+
--branch=<value> Branch to publish the update group on
|
|
703
|
+
--group=<value> Update group to republish
|
|
704
|
+
--input-dir=<value> [default: dist] Location of the bundle
|
|
705
|
+
--json Enable JSON output, non-JSON messages will be printed to stderr
|
|
706
|
+
--message=<value> A short message describing the update
|
|
707
|
+
--republish Republish an update group
|
|
708
|
+
--skip-bundler Skip running Expo CLI to bundle the app before publishing
|
|
709
|
+
|
|
710
|
+
DESCRIPTION
|
|
711
|
+
Publish an update group.
|
|
712
|
+
```
|
|
713
|
+
|
|
714
|
+
_See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/index.ts)_
|
|
416
715
|
|
|
417
716
|
## `eas update:configure`
|
|
418
717
|
|
|
@@ -421,9 +720,52 @@ Configure the project to support EAS Update.
|
|
|
421
720
|
```
|
|
422
721
|
USAGE
|
|
423
722
|
$ eas update:configure
|
|
723
|
+
|
|
724
|
+
DESCRIPTION
|
|
725
|
+
Configure the project to support EAS Update.
|
|
424
726
|
```
|
|
425
727
|
|
|
426
|
-
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
728
|
+
_See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/configure.ts)_
|
|
729
|
+
|
|
730
|
+
## `eas update:delete GROUPID`
|
|
731
|
+
|
|
732
|
+
Delete all the updates in an update Group.
|
|
733
|
+
|
|
734
|
+
```
|
|
735
|
+
USAGE
|
|
736
|
+
$ eas update:delete [GROUPID] [--json]
|
|
737
|
+
|
|
738
|
+
ARGUMENTS
|
|
739
|
+
GROUPID The ID of an update group to delete.
|
|
740
|
+
|
|
741
|
+
FLAGS
|
|
742
|
+
--json Return a json with the group ID of the deleted updates.
|
|
743
|
+
|
|
744
|
+
DESCRIPTION
|
|
745
|
+
Delete all the updates in an update Group.
|
|
746
|
+
```
|
|
747
|
+
|
|
748
|
+
_See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/delete.ts)_
|
|
749
|
+
|
|
750
|
+
## `eas update:view GROUPID`
|
|
751
|
+
|
|
752
|
+
Update group details.
|
|
753
|
+
|
|
754
|
+
```
|
|
755
|
+
USAGE
|
|
756
|
+
$ eas update:view [GROUPID] [--json]
|
|
757
|
+
|
|
758
|
+
ARGUMENTS
|
|
759
|
+
GROUPID The ID of an update group.
|
|
760
|
+
|
|
761
|
+
FLAGS
|
|
762
|
+
--json Return a json with the updates belonging to the group.
|
|
763
|
+
|
|
764
|
+
DESCRIPTION
|
|
765
|
+
Update group details.
|
|
766
|
+
```
|
|
767
|
+
|
|
768
|
+
_See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/update/view.ts)_
|
|
427
769
|
|
|
428
770
|
## `eas webhook:create`
|
|
429
771
|
|
|
@@ -431,18 +773,19 @@ Create a webhook on the current project.
|
|
|
431
773
|
|
|
432
774
|
```
|
|
433
775
|
USAGE
|
|
434
|
-
$ eas webhook:create
|
|
776
|
+
$ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
435
777
|
|
|
436
|
-
|
|
778
|
+
FLAGS
|
|
437
779
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
438
|
-
|
|
439
|
-
--secret=secret Secret used to create a hash signature of the request payload, provided in the
|
|
780
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
440
781
|
'Expo-Signature' header.
|
|
782
|
+
--url=<value> Webhook URL
|
|
441
783
|
|
|
442
|
-
|
|
784
|
+
DESCRIPTION
|
|
785
|
+
Create a webhook on the current project.
|
|
443
786
|
```
|
|
444
787
|
|
|
445
|
-
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
788
|
+
_See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/create.ts)_
|
|
446
789
|
|
|
447
790
|
## `eas webhook:delete [ID]`
|
|
448
791
|
|
|
@@ -454,9 +797,12 @@ USAGE
|
|
|
454
797
|
|
|
455
798
|
ARGUMENTS
|
|
456
799
|
ID ID of the webhook to delete
|
|
800
|
+
|
|
801
|
+
DESCRIPTION
|
|
802
|
+
Delete a webhook on the current project.
|
|
457
803
|
```
|
|
458
804
|
|
|
459
|
-
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
805
|
+
_See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/delete.ts)_
|
|
460
806
|
|
|
461
807
|
## `eas webhook:list`
|
|
462
808
|
|
|
@@ -464,13 +810,16 @@ List webhooks on the current project.
|
|
|
464
810
|
|
|
465
811
|
```
|
|
466
812
|
USAGE
|
|
467
|
-
$ eas webhook:list
|
|
813
|
+
$ eas webhook:list [--event BUILD|SUBMIT]
|
|
468
814
|
|
|
469
|
-
|
|
815
|
+
FLAGS
|
|
470
816
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
817
|
+
|
|
818
|
+
DESCRIPTION
|
|
819
|
+
List webhooks on the current project.
|
|
471
820
|
```
|
|
472
821
|
|
|
473
|
-
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
822
|
+
_See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/list.ts)_
|
|
474
823
|
|
|
475
824
|
## `eas webhook:update`
|
|
476
825
|
|
|
@@ -478,19 +827,20 @@ Create a webhook on the current project.
|
|
|
478
827
|
|
|
479
828
|
```
|
|
480
829
|
USAGE
|
|
481
|
-
$ eas webhook:update
|
|
830
|
+
$ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
|
|
482
831
|
|
|
483
|
-
|
|
832
|
+
FLAGS
|
|
484
833
|
--event=(BUILD|SUBMIT) Event type that triggers the webhook
|
|
485
|
-
--id
|
|
486
|
-
|
|
487
|
-
--secret=secret Secret used to create a hash signature of the request payload, provided in the
|
|
834
|
+
--id=<value> (required) Webhook ID
|
|
835
|
+
--secret=<value> Secret used to create a hash signature of the request payload, provided in the
|
|
488
836
|
'Expo-Signature' header.
|
|
837
|
+
--url=<value> Webhook URL
|
|
489
838
|
|
|
490
|
-
|
|
839
|
+
DESCRIPTION
|
|
840
|
+
Create a webhook on the current project.
|
|
491
841
|
```
|
|
492
842
|
|
|
493
|
-
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
843
|
+
_See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/update.ts)_
|
|
494
844
|
|
|
495
845
|
## `eas webhook:view ID`
|
|
496
846
|
|
|
@@ -498,11 +848,14 @@ View a webhook on the current project.
|
|
|
498
848
|
|
|
499
849
|
```
|
|
500
850
|
USAGE
|
|
501
|
-
$ eas webhook:view ID
|
|
851
|
+
$ eas webhook:view [ID]
|
|
502
852
|
|
|
503
853
|
ARGUMENTS
|
|
504
854
|
ID ID of the webhook to view
|
|
855
|
+
|
|
856
|
+
DESCRIPTION
|
|
857
|
+
View a webhook on the current project.
|
|
505
858
|
```
|
|
506
859
|
|
|
507
|
-
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.
|
|
860
|
+
_See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v0.42.3/packages/eas-cli/src/commands/webhook/view.ts)_
|
|
508
861
|
<!-- commandsstop -->
|