Skip to content

Commit ee2dc34

Browse files
committed
regenerate readme
1 parent 7d16d03 commit ee2dc34

File tree

1 file changed

+62
-0
lines changed

1 file changed

+62
-0
lines changed

packages/eas-cli/README.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ eas --help COMMAND
9090
* [`eas channel:rollout [CHANNEL]`](#eas-channelrollout-channel)
9191
* [`eas channel:view [NAME]`](#eas-channelview-name)
9292
* [`eas config`](#eas-config)
93+
* [`eas connections:asc:connect`](#eas-connectionsascconnect)
94+
* [`eas connections:asc:disconnect`](#eas-connectionsascdisconnect)
95+
* [`eas connections:asc:status`](#eas-connectionsascstatus)
9396
* [`eas credentials`](#eas-credentials)
9497
* [`eas credentials:configure-build`](#eas-credentialsconfigure-build)
9598
* [`eas deploy [options]`](#eas-deploy-options)
@@ -970,6 +973,65 @@ DESCRIPTION
970973

971974
_See code: [packages/eas-cli/src/commands/config.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/config.ts)_
972975

976+
## `eas connections:asc:connect`
977+
978+
connect a project to an App Store Connect app
979+
980+
```
981+
USAGE
982+
$ eas connections:asc:connect [--api-key-id <value>] [--asc-app-id <value>] [--bundle-id <value>] [--json]
983+
[--non-interactive]
984+
985+
FLAGS
986+
--api-key-id=<value> Apple App Store Connect API Key ID
987+
--asc-app-id=<value> App Store Connect app identifier
988+
--bundle-id=<value> Filter discovered apps by bundle identifier
989+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
990+
--non-interactive Run the command in non-interactive mode.
991+
992+
DESCRIPTION
993+
connect a project to an App Store Connect app
994+
```
995+
996+
_See code: [packages/eas-cli/src/commands/connections/asc/connect.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/connections/asc/connect.ts)_
997+
998+
## `eas connections:asc:disconnect`
999+
1000+
disconnect the current project from its App Store Connect app
1001+
1002+
```
1003+
USAGE
1004+
$ eas connections:asc:disconnect [--yes] [--json] [--non-interactive]
1005+
1006+
FLAGS
1007+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1008+
--non-interactive Run the command in non-interactive mode.
1009+
--yes Skip confirmation prompt
1010+
1011+
DESCRIPTION
1012+
disconnect the current project from its App Store Connect app
1013+
```
1014+
1015+
_See code: [packages/eas-cli/src/commands/connections/asc/disconnect.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/connections/asc/disconnect.ts)_
1016+
1017+
## `eas connections:asc:status`
1018+
1019+
show the App Store Connect app link status for the current project
1020+
1021+
```
1022+
USAGE
1023+
$ eas connections:asc:status [--json] [--non-interactive]
1024+
1025+
FLAGS
1026+
--json Enable JSON output, non-JSON messages will be printed to stderr. Implies --non-interactive.
1027+
--non-interactive Run the command in non-interactive mode.
1028+
1029+
DESCRIPTION
1030+
show the App Store Connect app link status for the current project
1031+
```
1032+
1033+
_See code: [packages/eas-cli/src/commands/connections/asc/status.ts](https://github.com/expo/eas-cli/blob/v18.4.0/packages/eas-cli/src/commands/connections/asc/status.ts)_
1034+
9731035
## `eas credentials`
9741036

9751037
manage credentials

0 commit comments

Comments
 (0)