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