eas-cli 2.1.0 → 2.2.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.
Files changed (293) hide show
  1. package/README.md +6 -1047
  2. package/build/branch/queries.d.ts +10 -2
  3. package/build/branch/queries.js +30 -30
  4. package/build/branch/utils.d.ts +4 -0
  5. package/build/branch/utils.js +15 -0
  6. package/build/build/android/build.js +3 -3
  7. package/build/build/android/prepareJob.js +1 -2
  8. package/build/build/android/syncProjectConfiguration.d.ts +2 -1
  9. package/build/build/android/syncProjectConfiguration.js +2 -2
  10. package/build/build/build.js +15 -4
  11. package/build/build/configure.js +2 -2
  12. package/build/build/createContext.d.ts +5 -1
  13. package/build/build/createContext.js +8 -14
  14. package/build/build/ios/build.js +2 -1
  15. package/build/build/ios/credentials.js +1 -1
  16. package/build/build/ios/prepareJob.js +1 -2
  17. package/build/build/ios/syncProjectConfiguration.d.ts +2 -1
  18. package/build/build/ios/syncProjectConfiguration.js +2 -2
  19. package/build/build/local.js +1 -1
  20. package/build/build/metadata.js +1 -2
  21. package/build/build/queries.d.ts +9 -0
  22. package/build/build/queries.js +51 -0
  23. package/build/build/runBuildAndSubmit.d.ts +3 -1
  24. package/build/build/runBuildAndSubmit.js +15 -7
  25. package/build/build/utils/repository.js +5 -1
  26. package/build/channel/queries.d.ts +17 -0
  27. package/build/channel/queries.js +137 -0
  28. package/build/channel/utils.d.ts +22 -0
  29. package/build/channel/utils.js +87 -0
  30. package/build/commandUtils/EasCommand.d.ts +68 -7
  31. package/build/commandUtils/EasCommand.js +60 -79
  32. package/build/commandUtils/context/ActorContextField.d.ts +5 -0
  33. package/build/commandUtils/context/ActorContextField.js +11 -0
  34. package/build/commandUtils/context/ContextField.d.ts +6 -0
  35. package/build/commandUtils/context/ContextField.js +5 -0
  36. package/build/commandUtils/context/DynamicProjectConfigContextField.d.ts +11 -0
  37. package/build/commandUtils/context/DynamicProjectConfigContextField.js +27 -0
  38. package/build/commandUtils/context/OptionalProjectConfigContextField.d.ts +13 -0
  39. package/build/commandUtils/context/OptionalProjectConfigContextField.js +37 -0
  40. package/build/commandUtils/context/ProjectConfigContextField.d.ts +13 -0
  41. package/build/commandUtils/context/ProjectConfigContextField.js +23 -0
  42. package/build/commandUtils/context/ProjectDirContextField.d.ts +4 -0
  43. package/build/commandUtils/context/ProjectDirContextField.js +11 -0
  44. package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.d.ts +21 -0
  45. package/build/commandUtils/context/contextUtils/ensureLoggedInAsync.js +75 -0
  46. package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.d.ts +17 -0
  47. package/build/commandUtils/context/contextUtils/findProjectDirAndVerifyProjectSetupAsync.js +102 -0
  48. package/build/commandUtils/context/contextUtils/getProjectIdAsync.d.ts +24 -0
  49. package/build/commandUtils/context/contextUtils/getProjectIdAsync.js +108 -0
  50. package/build/commandUtils/flags.d.ts +10 -0
  51. package/build/commandUtils/flags.js +23 -0
  52. package/build/commandUtils/pagination.d.ts +7 -4
  53. package/build/commandUtils/pagination.js +11 -15
  54. package/build/commands/account/login.d.ts +0 -2
  55. package/build/commands/account/login.js +2 -7
  56. package/build/commands/account/logout.d.ts +0 -2
  57. package/build/commands/account/logout.js +0 -5
  58. package/build/commands/account/view.d.ts +0 -2
  59. package/build/commands/account/view.js +0 -5
  60. package/build/commands/analytics.d.ts +0 -1
  61. package/build/commands/analytics.js +0 -4
  62. package/build/commands/branch/create.d.ts +4 -0
  63. package/build/commands/branch/create.js +18 -18
  64. package/build/commands/branch/delete.d.ts +4 -0
  65. package/build/commands/branch/delete.js +29 -26
  66. package/build/commands/branch/list.d.ts +5 -2
  67. package/build/commands/branch/list.js +13 -8
  68. package/build/commands/branch/rename.d.ts +5 -1
  69. package/build/commands/branch/rename.js +15 -13
  70. package/build/commands/branch/view.d.ts +5 -2
  71. package/build/commands/branch/view.js +31 -13
  72. package/build/commands/build/cancel.d.ts +7 -0
  73. package/build/commands/build/cancel.js +50 -23
  74. package/build/commands/build/configure.d.ts +3 -0
  75. package/build/commands/build/configure.js +12 -7
  76. package/build/commands/build/index.d.ts +7 -2
  77. package/build/commands/build/index.js +31 -23
  78. package/build/commands/build/inspect.d.ts +5 -0
  79. package/build/commands/build/inspect.js +12 -3
  80. package/build/commands/build/list.d.ts +7 -2
  81. package/build/commands/build/list.js +36 -59
  82. package/build/commands/build/version/set.d.ts +5 -0
  83. package/build/commands/build/version/set.js +22 -14
  84. package/build/commands/build/version/sync.d.ts +5 -0
  85. package/build/commands/build/version/sync.js +22 -13
  86. package/build/commands/build/view.d.ts +3 -0
  87. package/build/commands/build/view.js +20 -14
  88. package/build/commands/channel/create.d.ts +4 -0
  89. package/build/commands/channel/create.js +32 -25
  90. package/build/commands/channel/delete.d.ts +3 -0
  91. package/build/commands/channel/delete.js +36 -59
  92. package/build/commands/channel/edit.d.ts +7 -7
  93. package/build/commands/channel/edit.js +39 -72
  94. package/build/commands/channel/list.d.ts +6 -0
  95. package/build/commands/channel/list.js +20 -76
  96. package/build/commands/channel/rollout.d.ts +5 -1
  97. package/build/commands/channel/rollout.js +34 -35
  98. package/build/commands/channel/view.d.ts +6 -33
  99. package/build/commands/channel/view.js +31 -132
  100. package/build/commands/config.d.ts +6 -2
  101. package/build/commands/config.js +22 -13
  102. package/build/commands/credentials.d.ts +4 -0
  103. package/build/commands/credentials.js +10 -1
  104. package/build/commands/device/create.d.ts +4 -0
  105. package/build/commands/device/create.js +15 -3
  106. package/build/commands/device/delete.d.ts +13 -8
  107. package/build/commands/device/delete.js +81 -130
  108. package/build/commands/device/list.d.ts +7 -0
  109. package/build/commands/device/list.js +42 -63
  110. package/build/commands/device/view.d.ts +3 -0
  111. package/build/commands/device/view.js +10 -5
  112. package/build/commands/diagnostics.d.ts +3 -1
  113. package/build/commands/diagnostics.js +10 -8
  114. package/build/commands/metadata/pull.d.ts +4 -0
  115. package/build/commands/metadata/pull.js +13 -8
  116. package/build/commands/metadata/push.d.ts +4 -0
  117. package/build/commands/metadata/push.js +13 -8
  118. package/build/commands/open.d.ts +3 -0
  119. package/build/commands/open.js +11 -9
  120. package/build/commands/project/info.d.ts +3 -0
  121. package/build/commands/project/info.js +9 -6
  122. package/build/commands/project/init.d.ts +12 -0
  123. package/build/commands/project/init.js +155 -8
  124. package/build/commands/secret/create.d.ts +6 -0
  125. package/build/commands/secret/create.js +87 -30
  126. package/build/commands/secret/delete.d.ts +4 -0
  127. package/build/commands/secret/delete.js +28 -19
  128. package/build/commands/secret/list.d.ts +3 -0
  129. package/build/commands/secret/list.js +19 -13
  130. package/build/commands/submit.d.ts +5 -0
  131. package/build/commands/submit.js +16 -7
  132. package/build/commands/update/configure.d.ts +3 -0
  133. package/build/commands/update/configure.js +22 -16
  134. package/build/commands/update/delete.d.ts +1 -0
  135. package/build/commands/update/delete.js +4 -7
  136. package/build/commands/update/index.d.ts +8 -12
  137. package/build/commands/update/index.js +90 -166
  138. package/build/commands/update/list.d.ts +8 -2
  139. package/build/commands/update/list.js +51 -81
  140. package/build/commands/update/view.d.ts +0 -4
  141. package/build/commands/update/view.js +14 -51
  142. package/build/commands/webhook/create.d.ts +4 -0
  143. package/build/commands/webhook/create.js +10 -5
  144. package/build/commands/webhook/delete.d.ts +6 -0
  145. package/build/commands/webhook/delete.js +26 -14
  146. package/build/commands/webhook/list.d.ts +3 -0
  147. package/build/commands/webhook/list.js +13 -9
  148. package/build/commands/webhook/update.d.ts +1 -0
  149. package/build/commands/webhook/update.js +3 -1
  150. package/build/credentials/android/actions/BuildCredentialsUtils.js +2 -6
  151. package/build/credentials/android/actions/CreateFcm.d.ts +2 -3
  152. package/build/credentials/android/actions/CreateGoogleServiceAccountKey.d.ts +2 -3
  153. package/build/credentials/android/actions/CreateKeystore.d.ts +2 -3
  154. package/build/credentials/android/actions/CreateKeystore.js +1 -2
  155. package/build/credentials/android/actions/RemoveGoogleServiceAccountKey.d.ts +2 -3
  156. package/build/credentials/android/actions/UseExistingGoogleServiceAccountKey.d.ts +2 -3
  157. package/build/credentials/android/api/GraphqlClient.d.ts +6 -7
  158. package/build/credentials/context.d.ts +8 -4
  159. package/build/credentials/context.js +8 -23
  160. package/build/credentials/ios/IosCredentialsProvider.js +11 -6
  161. package/build/credentials/ios/actions/AppleTeamFormatting.d.ts +2 -0
  162. package/build/credentials/ios/actions/AppleTeamFormatting.js +7 -0
  163. package/build/credentials/ios/actions/AppleTeamUtils.d.ts +1 -2
  164. package/build/credentials/ios/actions/AppleTeamUtils.js +1 -5
  165. package/build/credentials/ios/actions/AscApiKeyUtils.d.ts +3 -4
  166. package/build/credentials/ios/actions/AscApiKeyUtils.js +2 -2
  167. package/build/credentials/ios/actions/AssignAscApiKey.d.ts +1 -1
  168. package/build/credentials/ios/actions/AssignPushKey.d.ts +1 -1
  169. package/build/credentials/ios/actions/BuildCredentialsUtils.d.ts +3 -3
  170. package/build/credentials/ios/actions/BuildCredentialsUtils.js +8 -12
  171. package/build/credentials/ios/actions/ConfigureProvisioningProfile.d.ts +1 -1
  172. package/build/credentials/ios/actions/CreateAscApiKey.d.ts +2 -3
  173. package/build/credentials/ios/actions/CreateDistributionCertificate.d.ts +2 -2
  174. package/build/credentials/ios/actions/CreateProvisioningProfile.d.ts +1 -1
  175. package/build/credentials/ios/actions/CreatePushKey.d.ts +2 -3
  176. package/build/credentials/ios/actions/DeviceUtils.d.ts +0 -1
  177. package/build/credentials/ios/actions/DeviceUtils.js +3 -19
  178. package/build/credentials/ios/actions/DistributionCertificateUtils.d.ts +3 -4
  179. package/build/credentials/ios/actions/DistributionCertificateUtils.js +2 -2
  180. package/build/credentials/ios/actions/PushKeyUtils.d.ts +2 -3
  181. package/build/credentials/ios/actions/PushKeyUtils.js +2 -2
  182. package/build/credentials/ios/actions/RemoveAscApiKey.d.ts +2 -3
  183. package/build/credentials/ios/actions/RemoveDistributionCertificate.d.ts +3 -4
  184. package/build/credentials/ios/actions/RemoveProvisioningProfile.d.ts +1 -1
  185. package/build/credentials/ios/actions/RemovePushKey.d.ts +2 -3
  186. package/build/credentials/ios/actions/SetUpAdhocProvisioningProfile.d.ts +1 -1
  187. package/build/credentials/ios/actions/SetUpAscApiKey.d.ts +1 -1
  188. package/build/credentials/ios/actions/SetUpDistributionCertificate.d.ts +1 -1
  189. package/build/credentials/ios/actions/SetUpInternalProvisioningProfile.d.ts +1 -1
  190. package/build/credentials/ios/actions/SetUpProvisioningProfile.d.ts +1 -1
  191. package/build/credentials/ios/actions/SetUpPushKey.d.ts +1 -1
  192. package/build/credentials/ios/actions/SetUpSubmissionCredentials.d.ts +1 -1
  193. package/build/credentials/ios/actions/SetUpTargetBuildCredentials.d.ts +1 -1
  194. package/build/credentials/ios/actions/SetUpTargetBuildCredentialsFromCredentialsJson.d.ts +1 -1
  195. package/build/credentials/ios/api/GraphqlClient.d.ts +9 -15
  196. package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.d.ts +2 -3
  197. package/build/credentials/ios/api/graphql/mutations/AppleTeamMutation.js +3 -1
  198. package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.d.ts +3 -3
  199. package/build/credentials/ios/api/graphql/queries/AppleDeviceQuery.js +20 -6
  200. package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.d.ts +2 -2
  201. package/build/credentials/ios/api/graphql/queries/AppleTeamQuery.js +8 -7
  202. package/build/credentials/ios/api/graphql/types/AppLookupParams.d.ts +7 -0
  203. package/build/credentials/ios/api/graphql/types/AppLookupParams.js +2 -0
  204. package/build/credentials/ios/types.d.ts +2 -3
  205. package/build/credentials/ios/utils/printCredentials.d.ts +1 -1
  206. package/build/credentials/ios/validators/validateProvisioningProfile.d.ts +1 -1
  207. package/build/credentials/manager/HelperActions.d.ts +4 -1
  208. package/build/credentials/manager/ManageAndroid.js +4 -14
  209. package/build/credentials/manager/ManageIos.js +12 -15
  210. package/build/credentials/manager/SelectBuildProfileFromEasJson.d.ts +1 -1
  211. package/build/credentials/manager/SelectBuildProfileFromEasJson.js +3 -3
  212. package/build/credentials/manager/SelectPlatform.d.ts +5 -1
  213. package/build/credentials/manager/SelectPlatform.js +5 -3
  214. package/build/devices/actions/create/action.d.ts +2 -3
  215. package/build/devices/context.d.ts +3 -5
  216. package/build/devices/context.js +2 -11
  217. package/build/devices/manager.d.ts +4 -5
  218. package/build/devices/manager.js +9 -16
  219. package/build/devices/queries.d.ts +21 -0
  220. package/build/devices/queries.js +121 -0
  221. package/build/devices/utils/errors.d.ts +3 -0
  222. package/build/devices/utils/errors.js +9 -0
  223. package/build/devices/utils/formatDevice.d.ts +3 -3
  224. package/build/devices/utils/formatDevice.js +8 -3
  225. package/build/graphql/generated.d.ts +1101 -191
  226. package/build/graphql/generated.js +13 -2
  227. package/build/graphql/mutations/EnvironmentSecretMutation.d.ts +3 -1
  228. package/build/graphql/queries/AppQuery.d.ts +1 -0
  229. package/build/graphql/queries/AppQuery.js +19 -0
  230. package/build/graphql/queries/BranchQuery.d.ts +5 -6
  231. package/build/graphql/queries/BranchQuery.js +44 -3
  232. package/build/graphql/queries/BuildQuery.d.ts +2 -20
  233. package/build/graphql/queries/BuildQuery.js +2 -2
  234. package/build/graphql/queries/ChannelQuery.d.ts +5 -2
  235. package/build/graphql/queries/ChannelQuery.js +45 -19
  236. package/build/graphql/queries/EnvironmentSecretsQuery.d.ts +5 -3
  237. package/build/graphql/queries/EnvironmentSecretsQuery.js +14 -28
  238. package/build/graphql/queries/UpdateQuery.d.ts +4 -6
  239. package/build/graphql/queries/UpdateQuery.js +59 -50
  240. package/build/graphql/queries/UserQuery.js +8 -1
  241. package/build/graphql/types/Account.d.ts +1 -0
  242. package/build/graphql/types/Account.js +17 -0
  243. package/build/graphql/types/App.js +7 -0
  244. package/build/graphql/types/EnvironmentSecret.d.ts +7 -0
  245. package/build/graphql/types/EnvironmentSecret.js +16 -1
  246. package/build/graphql/types/Update.d.ts +1 -0
  247. package/build/graphql/types/Update.js +30 -0
  248. package/build/graphql/types/UpdateBranch.js +4 -15
  249. package/build/metadata/context.d.ts +1 -1
  250. package/build/metadata/context.js +7 -9
  251. package/build/project/android/applicationId.d.ts +2 -1
  252. package/build/project/android/applicationId.js +7 -7
  253. package/build/project/android/versions.js +1 -1
  254. package/build/project/applicationIdentifier.d.ts +2 -1
  255. package/build/project/applicationIdentifier.js +2 -2
  256. package/build/project/expoConfig.d.ts +3 -3
  257. package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.d.ts +22 -0
  258. package/build/project/fetchOrCreateProjectIDForWriteToConfigWithConfirmationAsync.js +93 -0
  259. package/build/project/ios/bundleIdentifier.d.ts +2 -1
  260. package/build/project/ios/bundleIdentifier.js +7 -7
  261. package/build/project/ios/scheme.d.ts +1 -1
  262. package/build/project/projectUtils.d.ts +4 -31
  263. package/build/project/projectUtils.js +13 -123
  264. package/build/project/remoteVersionSource.d.ts +2 -2
  265. package/build/project/remoteVersionSource.js +8 -7
  266. package/build/submit/android/ServiceAccountSource.js +1 -2
  267. package/build/submit/context.d.ts +3 -1
  268. package/build/submit/context.js +12 -14
  269. package/build/submit/ios/CredentialsServiceSource.js +1 -2
  270. package/build/submit/utils/builds.js +3 -1
  271. package/build/update/android/UpdatesModule.d.ts +1 -1
  272. package/build/update/android/UpdatesModule.js +2 -3
  273. package/build/update/ios/UpdatesModule.d.ts +1 -1
  274. package/build/update/ios/UpdatesModule.js +2 -3
  275. package/build/update/queries.d.ts +16 -1
  276. package/build/update/queries.js +96 -30
  277. package/build/update/utils.d.ts +21 -8
  278. package/build/update/utils.js +75 -14
  279. package/build/user/actions.d.ts +2 -8
  280. package/build/user/actions.js +4 -63
  281. package/build/utils/profiles.d.ts +3 -3
  282. package/build/utils/profiles.js +6 -5
  283. package/build/vcs/clients/git.d.ts +1 -1
  284. package/build/vcs/clients/git.js +1 -1
  285. package/build/vcs/vcs.d.ts +1 -1
  286. package/build/webhooks/input.d.ts +2 -1
  287. package/build/webhooks/input.js +10 -1
  288. package/oclif.manifest.json +1 -1
  289. package/package.json +4 -4
  290. package/build/project/ensureProjectExists.d.ts +0 -21
  291. package/build/project/ensureProjectExists.js +0 -88
  292. package/build/user/Account.d.ts +0 -3
  293. package/build/user/Account.js +0 -7
package/README.md CHANGED
@@ -55,125 +55,8 @@ eas --help COMMAND
55
55
  # Commands
56
56
 
57
57
  <!-- commands -->
58
- * [`eas account:login`](#eas-accountlogin)
59
- * [`eas account:logout`](#eas-accountlogout)
60
- * [`eas account:view`](#eas-accountview)
61
- * [`eas analytics [STATUS]`](#eas-analytics-status)
62
58
  * [`eas autocomplete [SHELL]`](#eas-autocomplete-shell)
63
- * [`eas branch:create [NAME]`](#eas-branchcreate-name)
64
- * [`eas branch:delete [NAME]`](#eas-branchdelete-name)
65
- * [`eas branch:list`](#eas-branchlist)
66
- * [`eas branch:rename`](#eas-branchrename)
67
- * [`eas branch:view [NAME]`](#eas-branchview-name)
68
- * [`eas build`](#eas-build)
69
- * [`eas build:cancel [BUILD_ID]`](#eas-buildcancel-build_id)
70
- * [`eas build:configure`](#eas-buildconfigure)
71
- * [`eas build:inspect`](#eas-buildinspect)
72
- * [`eas build:list`](#eas-buildlist)
73
- * [`eas build:submit`](#eas-buildsubmit)
74
- * [`eas build:version:set`](#eas-buildversionset)
75
- * [`eas build:version:sync`](#eas-buildversionsync)
76
- * [`eas build:view [BUILD_ID]`](#eas-buildview-build_id)
77
- * [`eas channel:create [NAME]`](#eas-channelcreate-name)
78
- * [`eas channel:edit [NAME]`](#eas-channeledit-name)
79
- * [`eas channel:list`](#eas-channellist)
80
- * [`eas channel:view [NAME]`](#eas-channelview-name)
81
- * [`eas config`](#eas-config)
82
- * [`eas credentials`](#eas-credentials)
83
- * [`eas device:create`](#eas-devicecreate)
84
- * [`eas device:delete`](#eas-devicedelete)
85
- * [`eas device:list`](#eas-devicelist)
86
- * [`eas device:view [UDID]`](#eas-deviceview-udid)
87
- * [`eas diagnostics`](#eas-diagnostics)
88
59
  * [`eas help [COMMAND]`](#eas-help-command)
89
- * [`eas init`](#eas-init)
90
- * [`eas login`](#eas-login)
91
- * [`eas logout`](#eas-logout)
92
- * [`eas metadata:pull`](#eas-metadatapull)
93
- * [`eas metadata:push`](#eas-metadatapush)
94
- * [`eas open`](#eas-open)
95
- * [`eas project:info`](#eas-projectinfo)
96
- * [`eas project:init`](#eas-projectinit)
97
- * [`eas secret:create`](#eas-secretcreate)
98
- * [`eas secret:delete`](#eas-secretdelete)
99
- * [`eas secret:list`](#eas-secretlist)
100
- * [`eas submit`](#eas-submit)
101
- * [`eas update`](#eas-update)
102
- * [`eas update:configure`](#eas-updateconfigure)
103
- * [`eas update:delete GROUPID`](#eas-updatedelete-groupid)
104
- * [`eas update:list`](#eas-updatelist)
105
- * [`eas update:view GROUPID`](#eas-updateview-groupid)
106
- * [`eas webhook:create`](#eas-webhookcreate)
107
- * [`eas webhook:delete [ID]`](#eas-webhookdelete-id)
108
- * [`eas webhook:list`](#eas-webhooklist)
109
- * [`eas webhook:update`](#eas-webhookupdate)
110
- * [`eas webhook:view ID`](#eas-webhookview-id)
111
- * [`eas whoami`](#eas-whoami)
112
-
113
- ## `eas account:login`
114
-
115
- log in with your Expo account
116
-
117
- ```
118
- USAGE
119
- $ eas account:login
120
-
121
- DESCRIPTION
122
- log in with your Expo account
123
-
124
- ALIASES
125
- $ eas login
126
- ```
127
-
128
- _See code: [src/commands/account/login.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/account/login.ts)_
129
-
130
- ## `eas account:logout`
131
-
132
- log out
133
-
134
- ```
135
- USAGE
136
- $ eas account:logout
137
-
138
- DESCRIPTION
139
- log out
140
-
141
- ALIASES
142
- $ eas logout
143
- ```
144
-
145
- _See code: [src/commands/account/logout.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/account/logout.ts)_
146
-
147
- ## `eas account:view`
148
-
149
- show the username you are logged in as
150
-
151
- ```
152
- USAGE
153
- $ eas account:view
154
-
155
- DESCRIPTION
156
- show the username you are logged in as
157
-
158
- ALIASES
159
- $ eas whoami
160
- ```
161
-
162
- _See code: [src/commands/account/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/account/view.ts)_
163
-
164
- ## `eas analytics [STATUS]`
165
-
166
- display or change analytics settings
167
-
168
- ```
169
- USAGE
170
- $ eas analytics [STATUS]
171
-
172
- DESCRIPTION
173
- display or change analytics settings
174
- ```
175
-
176
- _See code: [src/commands/analytics.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/analytics.ts)_
177
60
 
178
61
  ## `eas autocomplete [SHELL]`
179
62
 
@@ -204,947 +87,23 @@ EXAMPLES
204
87
 
205
88
  _See code: [@expo/plugin-autocomplete](https://github.com/expo/plugin-autocomplete/blob/v1.4.0/src/commands/autocomplete/index.ts)_
206
89
 
207
- ## `eas branch:create [NAME]`
208
-
209
- create a branch
210
-
211
- ```
212
- USAGE
213
- $ eas branch:create [NAME] [--json]
214
-
215
- ARGUMENTS
216
- NAME Name of the branch to create
217
-
218
- FLAGS
219
- --json return a json with the new branch ID and name.
220
-
221
- DESCRIPTION
222
- create a branch
223
- ```
224
-
225
- _See code: [src/commands/branch/create.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/branch/create.ts)_
226
-
227
- ## `eas branch:delete [NAME]`
228
-
229
- delete a branch
230
-
231
- ```
232
- USAGE
233
- $ eas branch:delete [NAME] [--json]
234
-
235
- ARGUMENTS
236
- NAME Name of the branch to delete
237
-
238
- FLAGS
239
- --json return JSON with the edited branch's ID and name.
240
-
241
- DESCRIPTION
242
- delete a branch
243
- ```
244
-
245
- _See code: [src/commands/branch/delete.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/branch/delete.ts)_
246
-
247
- ## `eas branch:list`
248
-
249
- list all branches
250
-
251
- ```
252
- USAGE
253
- $ eas branch:list [--offset <value>] [--limit <value>] [--json] [--non-interactive]
254
-
255
- FLAGS
256
- --json Enable JSON output, non-JSON messages will be printed to stderr.
257
- --limit=<value> The number of query items to list at once. The default value is 50 (the maximum is 100). Using a
258
- lower value may help increase command speed.
259
- --non-interactive Run the command in non-interactive mode.
260
- --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
261
-
262
- DESCRIPTION
263
- list all branches
264
- ```
265
-
266
- _See code: [src/commands/branch/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/branch/list.ts)_
267
-
268
- ## `eas branch:rename`
269
-
270
- rename a branch
271
-
272
- ```
273
- USAGE
274
- $ eas branch:rename [--from <value>] [--to <value>] [--json]
275
-
276
- FLAGS
277
- --from=<value> current name of the branch.
278
- --json return a json with the edited branch's ID and name.
279
- --to=<value> new name of the branch.
280
-
281
- DESCRIPTION
282
- rename a branch
283
- ```
284
-
285
- _See code: [src/commands/branch/rename.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/branch/rename.ts)_
286
-
287
- ## `eas branch:view [NAME]`
288
-
289
- view a branch
290
-
291
- ```
292
- USAGE
293
- $ eas branch:view [NAME] [--offset <value>] [--limit <value>] [--json] [--non-interactive]
294
-
295
- ARGUMENTS
296
- NAME Name of the branch to view
297
-
298
- FLAGS
299
- --json Enable JSON output, non-JSON messages will be printed to stderr.
300
- --limit=<value> The number of query items to list at once. The default value is 50 (the maximum is 100). Using a
301
- lower value may help increase command speed.
302
- --non-interactive Run the command in non-interactive mode.
303
- --offset=<value> Start queries from specified index. Use for paginating results. Defaults to 0.
304
-
305
- DESCRIPTION
306
- view a branch
307
- ```
308
-
309
- _See code: [src/commands/branch/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/branch/view.ts)_
310
-
311
- ## `eas build`
312
-
313
- start a build
314
-
315
- ```
316
- USAGE
317
- $ eas build [-p android|ios|all] [--json] [--profile <value>] [--non-interactive] [--local] [--output
318
- <value>] [--wait] [--clear-cache] [--auto-submit | --auto-submit-with-profile <value>] [-m <value>]
319
-
320
- FLAGS
321
- -m, --message=<value> A short message describing the build
322
- -p, --platform=(android|ios|all)
323
- --auto-submit Submit on build complete using the submit profile with the same name as the
324
- build profile
325
- --auto-submit-with-profile=PROFILE_NAME Submit on build complete using the submit profile with provided name
326
- --clear-cache Clear cache before the build
327
- --json Enable JSON output, non-JSON messages will be printed to stderr
328
- --local Run build locally [experimental]
329
- --non-interactive Run command in non-interactive mode
330
- --output=<value> Output path for local build
331
- --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined
332
- in eas.json.
333
- --[no-]wait Wait for build(s) to complete
334
-
335
- DESCRIPTION
336
- start a build
337
- ```
338
-
339
- _See code: [src/commands/build/index.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/index.ts)_
340
-
341
- ## `eas build:cancel [BUILD_ID]`
342
-
343
- cancel a build
344
-
345
- ```
346
- USAGE
347
- $ eas build:cancel [BUILD_ID]
348
-
349
- DESCRIPTION
350
- cancel a build
351
- ```
352
-
353
- _See code: [src/commands/build/cancel.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/cancel.ts)_
354
-
355
- ## `eas build:configure`
356
-
357
- configure the project to support EAS Build
358
-
359
- ```
360
- USAGE
361
- $ eas build:configure [-p android|ios|all]
362
-
363
- FLAGS
364
- -p, --platform=(android|ios|all) Platform to configure
365
-
366
- DESCRIPTION
367
- configure the project to support EAS Build
368
- ```
369
-
370
- _See code: [src/commands/build/configure.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/configure.ts)_
371
-
372
- ## `eas build:inspect`
373
-
374
- inspect the state of the project at specific build stages, useful for troubleshooting
375
-
376
- ```
377
- USAGE
378
- $ eas build:inspect -p android|ios -s archive|pre-build|post-build -o <value> [--profile <value>] [--force] [-v]
379
-
380
- FLAGS
381
- -o, --output=OUTPUT_DIRECTORY
382
- (required) Output directory.
383
-
384
- -p, --platform=(android|ios)
385
- (required)
386
-
387
- -s, --stage=(archive|pre-build|post-build)
388
- (required) Stage of the build you want to inspect.
389
- archive - builds the project archive that would be uploaded to EAS when building
390
- pre-build - prepares the project to be built with Gradle/Xcode. Does not run the native build.
391
- post-build - builds the native project and leaves the output directory for inspection
392
-
393
- -v, --verbose
394
-
395
- --force
396
- Delete OUTPUT_DIRECTORY if it already exists.
397
-
398
- --profile=PROFILE_NAME
399
- Name of the build profile from eas.json. Defaults to "production" if defined in eas.json.
400
-
401
- DESCRIPTION
402
- inspect the state of the project at specific build stages, useful for troubleshooting
403
- ```
404
-
405
- _See code: [src/commands/build/inspect.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/inspect.ts)_
406
-
407
- ## `eas build:list`
408
-
409
- list all builds for your project
410
-
411
- ```
412
- USAGE
413
- $ eas build:list [--platform all|android|ios] [--json] [--status
414
- new|in-queue|in-progress|errored|finished|canceled] [--distribution store|internal|simulator] [--channel <value>]
415
- [--appVersion <value>] [--appBuildVersion <value>] [--sdkVersion <value>] [--runtimeVersion <value>]
416
- [--appIdentifier <value>] [--buildProfile <value>] [--gitCommitHash <value>] [--limit <value>]
417
-
418
- FLAGS
419
- --appBuildVersion=<value>
420
- --appIdentifier=<value>
421
- --appVersion=<value>
422
- --buildProfile=<value>
423
- --channel=<value>
424
- --distribution=(store|internal|simulator)
425
- --gitCommitHash=<value>
426
- --json Enable JSON output, non-JSON messages will be printed
427
- to stderr
428
- --limit=<value>
429
- --platform=(all|android|ios)
430
- --runtimeVersion=<value>
431
- --sdkVersion=<value>
432
- --status=(new|in-queue|in-progress|errored|finished|canceled)
433
-
434
- DESCRIPTION
435
- list all builds for your project
436
- ```
437
-
438
- _See code: [src/commands/build/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/list.ts)_
439
-
440
- ## `eas build:submit`
441
-
442
- submit app binary to App Store and/or Play Store
443
-
444
- ```
445
- USAGE
446
- $ eas build:submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
447
- <value>] [--verbose] [--wait] [--non-interactive]
448
-
449
- FLAGS
450
- -p, --platform=(android|ios|all)
451
- --id=<value> ID of the build to submit
452
- --latest Submit the latest build for specified platform
453
- --non-interactive Run command in non-interactive mode
454
- --path=<value> Path to the .apk/.aab/.ipa file
455
- --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
456
- eas.json.
457
- --url=<value> App archive url
458
- --verbose Always print logs from Submission Service
459
- --[no-]wait Wait for submission to complete
460
-
461
- DESCRIPTION
462
- submit app binary to App Store and/or Play Store
463
-
464
- ALIASES
465
- $ eas build:submit
466
- ```
467
-
468
- ## `eas build:version:set`
469
-
470
- Update version of an app.
471
-
472
- ```
473
- USAGE
474
- $ eas build:version:set [-p android|ios] [--profile <value>]
475
-
476
- FLAGS
477
- -p, --platform=(android|ios)
478
- --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
479
- eas.json.
480
-
481
- DESCRIPTION
482
- Update version of an app.
483
- ```
484
-
485
- _See code: [src/commands/build/version/set.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/version/set.ts)_
486
-
487
- ## `eas build:version:sync`
488
-
489
- Update a version in native code with a value stored on EAS servers
490
-
491
- ```
492
- USAGE
493
- $ eas build:version:sync [-p android|ios|all] [--profile <value>]
494
-
495
- FLAGS
496
- -p, --platform=(android|ios|all)
497
- --profile=PROFILE_NAME Name of the build profile from eas.json. Defaults to "production" if defined in
498
- eas.json.
499
-
500
- DESCRIPTION
501
- Update a version in native code with a value stored on EAS servers
502
- ```
503
-
504
- _See code: [src/commands/build/version/sync.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/version/sync.ts)_
505
-
506
- ## `eas build:view [BUILD_ID]`
507
-
508
- view a build for your project
509
-
510
- ```
511
- USAGE
512
- $ eas build:view [BUILD_ID] [--json]
513
-
514
- FLAGS
515
- --json Enable JSON output, non-JSON messages will be printed to stderr
516
-
517
- DESCRIPTION
518
- view a build for your project
519
- ```
520
-
521
- _See code: [src/commands/build/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/build/view.ts)_
522
-
523
- ## `eas channel:create [NAME]`
524
-
525
- create a channel
526
-
527
- ```
528
- USAGE
529
- $ eas channel:create [NAME] [--json]
530
-
531
- ARGUMENTS
532
- NAME Name of the channel to create
533
-
534
- FLAGS
535
- --json print output as a JSON object with the new channel ID, name and branch mapping.
536
-
537
- DESCRIPTION
538
- create a channel
539
- ```
540
-
541
- _See code: [src/commands/channel/create.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/channel/create.ts)_
542
-
543
- ## `eas channel:edit [NAME]`
544
-
545
- point a channel at a new branch
546
-
547
- ```
548
- USAGE
549
- $ eas channel:edit [NAME] [--branch <value>] [--json]
550
-
551
- ARGUMENTS
552
- NAME Name of the channel to edit
553
-
554
- FLAGS
555
- --branch=<value> Name of the branch to point to
556
- --json Print output as a JSON object with the channel ID, name and branch mapping
557
-
558
- DESCRIPTION
559
- point a channel at a new branch
560
- ```
561
-
562
- _See code: [src/commands/channel/edit.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/channel/edit.ts)_
563
-
564
- ## `eas channel:list`
565
-
566
- list all channels
567
-
568
- ```
569
- USAGE
570
- $ eas channel:list [--json]
571
-
572
- FLAGS
573
- --json print output as a JSON object with the channel ID, name and branch mapping.
574
-
575
- DESCRIPTION
576
- list all channels
577
- ```
578
-
579
- _See code: [src/commands/channel/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/channel/list.ts)_
580
-
581
- ## `eas channel:view [NAME]`
90
+ ## `eas help [COMMAND]`
582
91
 
583
- view a channel
92
+ display help for eas-cli
584
93
 
585
94
  ```
586
95
  USAGE
587
- $ eas channel:view [NAME] [--json]
96
+ $ eas help [COMMAND] [-n]
588
97
 
589
98
  ARGUMENTS
590
- NAME Name of the channel to view
591
-
592
- FLAGS
593
- --json print output as a JSON object with the channel ID, name and branch mapping.
594
-
595
- DESCRIPTION
596
- view a channel
597
- ```
598
-
599
- _See code: [src/commands/channel/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/channel/view.ts)_
600
-
601
- ## `eas config`
602
-
603
- display project configuration (app.json + eas.json)
604
-
605
- ```
606
- USAGE
607
- $ eas config [-p android|ios] [--profile <value>]
99
+ COMMAND Command to show help for.
608
100
 
609
101
  FLAGS
610
- -p, --platform=(android|ios)
611
- --profile=<value>
102
+ -n, --nested-commands Include all nested commands in the output.
612
103
 
613
104
  DESCRIPTION
614
- display project configuration (app.json + eas.json)
615
- ```
616
-
617
- _See code: [src/commands/config.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/config.ts)_
618
-
619
- ## `eas credentials`
620
-
621
- manage credentials
622
-
623
- ```
624
- USAGE
625
- $ eas credentials [-p android|ios]
626
-
627
- FLAGS
628
- -p, --platform=(android|ios)
629
-
630
- DESCRIPTION
631
- manage credentials
632
- ```
633
-
634
- _See code: [src/commands/credentials.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/credentials.ts)_
635
-
636
- ## `eas device:create`
637
-
638
- register new Apple Devices to use for internal distribution
639
-
640
- ```
641
- USAGE
642
- $ eas device:create
643
-
644
- DESCRIPTION
645
- register new Apple Devices to use for internal distribution
646
- ```
647
-
648
- _See code: [src/commands/device/create.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/device/create.ts)_
649
-
650
- ## `eas device:delete`
651
-
652
- remove a registered device from your account
653
-
654
- ```
655
- USAGE
656
- $ eas device:delete [--apple-team-id <value>] [--udid <value>]
657
-
658
- FLAGS
659
- --apple-team-id=<value>
660
- --udid=<value>...
661
-
662
- DESCRIPTION
663
- remove a registered device from your account
664
- ```
665
-
666
- _See code: [src/commands/device/delete.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/device/delete.ts)_
667
-
668
- ## `eas device:list`
669
-
670
- list all registered devices for your account
671
-
672
- ```
673
- USAGE
674
- $ eas device:list [--apple-team-id <value>]
675
-
676
- FLAGS
677
- --apple-team-id=<value>
678
-
679
- DESCRIPTION
680
- list all registered devices for your account
681
- ```
682
-
683
- _See code: [src/commands/device/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/device/list.ts)_
684
-
685
- ## `eas device:view [UDID]`
686
-
687
- view a device for your project
688
-
689
- ```
690
- USAGE
691
- $ eas device:view [UDID]
692
-
693
- DESCRIPTION
694
- view a device for your project
695
- ```
696
-
697
- _See code: [src/commands/device/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/device/view.ts)_
698
-
699
- ## `eas diagnostics`
700
-
701
- display environment info
702
-
703
- ```
704
- USAGE
705
- $ eas diagnostics
706
-
707
- DESCRIPTION
708
- display environment info
709
- ```
710
-
711
- _See code: [src/commands/diagnostics.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/diagnostics.ts)_
712
-
713
- ## `eas help [COMMAND]`
714
-
715
- display help for eas-cli
716
-
717
- ```
718
- USAGE
719
- $ eas help [COMMAND] [-n]
720
-
721
- ARGUMENTS
722
- COMMAND Command to show help for.
723
-
724
- FLAGS
725
- -n, --nested-commands Include all nested commands in the output.
726
-
727
- DESCRIPTION
728
- display help for eas-cli
105
+ display help for eas-cli
729
106
  ```
730
107
 
731
108
  _See code: [@expo/plugin-help](https://github.com/expo/oclif-plugin-help/blob/v5.3.0/src/commands/help.ts)_
732
-
733
- ## `eas init`
734
-
735
- create or link an EAS project
736
-
737
- ```
738
- USAGE
739
- $ eas init
740
-
741
- DESCRIPTION
742
- create or link an EAS project
743
-
744
- ALIASES
745
- $ eas init
746
- ```
747
-
748
- ## `eas login`
749
-
750
- log in with your Expo account
751
-
752
- ```
753
- USAGE
754
- $ eas login
755
-
756
- DESCRIPTION
757
- log in with your Expo account
758
-
759
- ALIASES
760
- $ eas login
761
- ```
762
-
763
- ## `eas logout`
764
-
765
- log out
766
-
767
- ```
768
- USAGE
769
- $ eas logout
770
-
771
- DESCRIPTION
772
- log out
773
-
774
- ALIASES
775
- $ eas logout
776
- ```
777
-
778
- ## `eas metadata:pull`
779
-
780
- generate the local store configuration from the app stores
781
-
782
- ```
783
- USAGE
784
- $ eas metadata:pull [--profile <value>]
785
-
786
- FLAGS
787
- --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
788
-
789
- DESCRIPTION
790
- generate the local store configuration from the app stores
791
- ```
792
-
793
- _See code: [src/commands/metadata/pull.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/metadata/pull.ts)_
794
-
795
- ## `eas metadata:push`
796
-
797
- sync the local store configuration to the app stores
798
-
799
- ```
800
- USAGE
801
- $ eas metadata:push [--profile <value>]
802
-
803
- FLAGS
804
- --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in eas.json.
805
-
806
- DESCRIPTION
807
- sync the local store configuration to the app stores
808
- ```
809
-
810
- _See code: [src/commands/metadata/push.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/metadata/push.ts)_
811
-
812
- ## `eas open`
813
-
814
- open the project page in a web browser
815
-
816
- ```
817
- USAGE
818
- $ eas open
819
-
820
- DESCRIPTION
821
- open the project page in a web browser
822
- ```
823
-
824
- _See code: [src/commands/open.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/open.ts)_
825
-
826
- ## `eas project:info`
827
-
828
- information about the current project
829
-
830
- ```
831
- USAGE
832
- $ eas project:info
833
-
834
- DESCRIPTION
835
- information about the current project
836
- ```
837
-
838
- _See code: [src/commands/project/info.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/project/info.ts)_
839
-
840
- ## `eas project:init`
841
-
842
- create or link an EAS project
843
-
844
- ```
845
- USAGE
846
- $ eas project:init
847
-
848
- DESCRIPTION
849
- create or link an EAS project
850
-
851
- ALIASES
852
- $ eas init
853
- ```
854
-
855
- _See code: [src/commands/project/init.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/project/init.ts)_
856
-
857
- ## `eas secret:create`
858
-
859
- create an environment secret on the current project or owner account
860
-
861
- ```
862
- USAGE
863
- $ eas secret:create [--scope account|project] [--name <value>] [--value <value>] [--force]
864
-
865
- FLAGS
866
- --force Delete and recreate existing secrets
867
- --name=<value> Name of the secret
868
- --scope=(account|project) [default: project] Scope for the secret
869
- --value=<value> Value of the secret
870
-
871
- DESCRIPTION
872
- create an environment secret on the current project or owner account
873
- ```
874
-
875
- _See code: [src/commands/secret/create.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/secret/create.ts)_
876
-
877
- ## `eas secret:delete`
878
-
879
- delete an environment secret by ID
880
-
881
- ```
882
- USAGE
883
- $ eas secret:delete [--id <value>]
884
-
885
- FLAGS
886
- --id=<value> ID of the secret to delete
887
-
888
- DESCRIPTION
889
- delete an environment secret by ID
890
- ```
891
-
892
- _See code: [src/commands/secret/delete.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/secret/delete.ts)_
893
-
894
- ## `eas secret:list`
895
-
896
- list environment secrets available for your current app
897
-
898
- ```
899
- USAGE
900
- $ eas secret:list
901
-
902
- DESCRIPTION
903
- list environment secrets available for your current app
904
- ```
905
-
906
- _See code: [src/commands/secret/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/secret/list.ts)_
907
-
908
- ## `eas submit`
909
-
910
- submit app binary to App Store and/or Play Store
911
-
912
- ```
913
- USAGE
914
- $ eas submit [-p android|ios|all] [--profile <value>] [--latest | --id <value> | --path <value> | --url
915
- <value>] [--verbose] [--wait] [--non-interactive]
916
-
917
- FLAGS
918
- -p, --platform=(android|ios|all)
919
- --id=<value> ID of the build to submit
920
- --latest Submit the latest build for specified platform
921
- --non-interactive Run command in non-interactive mode
922
- --path=<value> Path to the .apk/.aab/.ipa file
923
- --profile=<value> Name of the submit profile from eas.json. Defaults to "production" if defined in
924
- eas.json.
925
- --url=<value> App archive url
926
- --verbose Always print logs from Submission Service
927
- --[no-]wait Wait for submission to complete
928
-
929
- DESCRIPTION
930
- submit app binary to App Store and/or Play Store
931
-
932
- ALIASES
933
- $ eas build:submit
934
- ```
935
-
936
- _See code: [src/commands/submit.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/submit.ts)_
937
-
938
- ## `eas update`
939
-
940
- publish an update group
941
-
942
- ```
943
- USAGE
944
- $ eas update [--branch <value>] [--message <value>] [--republish | --input-dir <value> | --skip-bundler]
945
- [--group <value> | | ] [-p android|ios|all] [--json] [--auto] [--private-key-path <value>] [--non-interactive]
946
-
947
- FLAGS
948
- -p, --platform=(android|ios|all) [default: all]
949
- --auto Use the current git branch and commit message for the EAS branch and update message
950
- --branch=<value> Branch to publish the update group on
951
- --group=<value> Update group to republish
952
- --input-dir=<value> [default: dist] Location of the bundle
953
- --json Enable JSON output, non-JSON messages will be printed to stderr
954
- --message=<value> A short message describing the update
955
- --non-interactive Run command in non-interactive mode
956
- --private-key-path=<value> File containing the PEM-encoded private key corresponding to the certificate in
957
- expo-updates' configuration. Defaults to a file named "private-key.pem" in the
958
- certificate's directory.
959
- --republish Republish an update group
960
- --skip-bundler Skip running Expo CLI to bundle the app before publishing
961
-
962
- DESCRIPTION
963
- publish an update group
964
- ```
965
-
966
- _See code: [src/commands/update/index.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/update/index.ts)_
967
-
968
- ## `eas update:configure`
969
-
970
- configure the project to support EAS Update
971
-
972
- ```
973
- USAGE
974
- $ eas update:configure [-p android|ios|all]
975
-
976
- FLAGS
977
- -p, --platform=(android|ios|all) [default: all] Platform to configure
978
-
979
- DESCRIPTION
980
- configure the project to support EAS Update
981
- ```
982
-
983
- _See code: [src/commands/update/configure.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/update/configure.ts)_
984
-
985
- ## `eas update:delete GROUPID`
986
-
987
- delete all the updates in an update group
988
-
989
- ```
990
- USAGE
991
- $ eas update:delete [GROUPID] [--json]
992
-
993
- ARGUMENTS
994
- GROUPID The ID of an update group to delete.
995
-
996
- FLAGS
997
- --json Return a json with the group ID of the deleted updates.
998
-
999
- DESCRIPTION
1000
- delete all the updates in an update group
1001
- ```
1002
-
1003
- _See code: [src/commands/update/delete.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/update/delete.ts)_
1004
-
1005
- ## `eas update:list`
1006
-
1007
- view the recent updates for a branch
1008
-
1009
- ```
1010
- USAGE
1011
- $ eas update:list [--branch <value> | --all] [--json]
1012
-
1013
- FLAGS
1014
- --all List all updates associated with this project
1015
- --branch=<value> List all updates on this branch
1016
- --json Return a json with all of the recent update groups.
1017
-
1018
- DESCRIPTION
1019
- view the recent updates for a branch
1020
- ```
1021
-
1022
- _See code: [src/commands/update/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/update/list.ts)_
1023
-
1024
- ## `eas update:view GROUPID`
1025
-
1026
- update group details
1027
-
1028
- ```
1029
- USAGE
1030
- $ eas update:view [GROUPID] [--json]
1031
-
1032
- ARGUMENTS
1033
- GROUPID The ID of an update group.
1034
-
1035
- FLAGS
1036
- --json Return a json with the updates belonging to the group.
1037
-
1038
- DESCRIPTION
1039
- update group details
1040
- ```
1041
-
1042
- _See code: [src/commands/update/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/update/view.ts)_
1043
-
1044
- ## `eas webhook:create`
1045
-
1046
- create a webhook
1047
-
1048
- ```
1049
- USAGE
1050
- $ eas webhook:create [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
1051
-
1052
- FLAGS
1053
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
1054
- --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1055
- 'Expo-Signature' header.
1056
- --url=<value> Webhook URL
1057
-
1058
- DESCRIPTION
1059
- create a webhook
1060
- ```
1061
-
1062
- _See code: [src/commands/webhook/create.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/webhook/create.ts)_
1063
-
1064
- ## `eas webhook:delete [ID]`
1065
-
1066
- delete a webhook
1067
-
1068
- ```
1069
- USAGE
1070
- $ eas webhook:delete [ID]
1071
-
1072
- ARGUMENTS
1073
- ID ID of the webhook to delete
1074
-
1075
- DESCRIPTION
1076
- delete a webhook
1077
- ```
1078
-
1079
- _See code: [src/commands/webhook/delete.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/webhook/delete.ts)_
1080
-
1081
- ## `eas webhook:list`
1082
-
1083
- list webhooks
1084
-
1085
- ```
1086
- USAGE
1087
- $ eas webhook:list [--event BUILD|SUBMIT]
1088
-
1089
- FLAGS
1090
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
1091
-
1092
- DESCRIPTION
1093
- list webhooks
1094
- ```
1095
-
1096
- _See code: [src/commands/webhook/list.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/webhook/list.ts)_
1097
-
1098
- ## `eas webhook:update`
1099
-
1100
- update a webhook
1101
-
1102
- ```
1103
- USAGE
1104
- $ eas webhook:update --id <value> [--event BUILD|SUBMIT] [--url <value>] [--secret <value>]
1105
-
1106
- FLAGS
1107
- --event=(BUILD|SUBMIT) Event type that triggers the webhook
1108
- --id=<value> (required) Webhook ID
1109
- --secret=<value> Secret used to create a hash signature of the request payload, provided in the
1110
- 'Expo-Signature' header.
1111
- --url=<value> Webhook URL
1112
-
1113
- DESCRIPTION
1114
- update a webhook
1115
- ```
1116
-
1117
- _See code: [src/commands/webhook/update.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/webhook/update.ts)_
1118
-
1119
- ## `eas webhook:view ID`
1120
-
1121
- view a webhook
1122
-
1123
- ```
1124
- USAGE
1125
- $ eas webhook:view [ID]
1126
-
1127
- ARGUMENTS
1128
- ID ID of the webhook to view
1129
-
1130
- DESCRIPTION
1131
- view a webhook
1132
- ```
1133
-
1134
- _See code: [src/commands/webhook/view.ts](https://github.com/expo/eas-cli/blob/v2.1.0/packages/eas-cli/src/commands/webhook/view.ts)_
1135
-
1136
- ## `eas whoami`
1137
-
1138
- show the username you are logged in as
1139
-
1140
- ```
1141
- USAGE
1142
- $ eas whoami
1143
-
1144
- DESCRIPTION
1145
- show the username you are logged in as
1146
-
1147
- ALIASES
1148
- $ eas whoami
1149
- ```
1150
109
  <!-- commandsstop -->