| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This Docker image is designed to simplify interactions with App Store Connect via Codemagic CLI Tools, facilitating the automation of app management tasks.
Ensure you have Docker installed on your system to use this image. Download Docker from Docker's official site.
The Docker image is hosted on Docker Hub and can be pulled using the following command:
docker pull bednar/app-store-connect-cliIf you prefer to build the image locally, clone this repository and navigate to the directory containing the Dockerfile. Run the following command:
docker build -t bednar/app-store-connect-cli .With the Docker image, you can execute various commands to interact with App Store Connect. Here are some example commands:
List all applications in your App Store Connect account:
docker run -it --rm bednar/app-store-connect-cli apps listRetrieve detailed information about a specific app using its App Store Connect ID:
docker run -it --rm bednar/app-store-connect-cli apps get 123456789Submit an app for review with its version number:
docker run -it --rm bednar/app-store-connect-cli publish-application --app-id 123456789 --version "1.0.1"To successfully interact with App Store Connect, you need to set up authentication credentials for Codemagic CLI Tools. The following steps guide you through the process:
docker run -it --rm \
-e APP_STORE_CONNECT_ISSUER_ID="12345678-1234-1234-1234-123456789012" \
-e APP_STORE_CONNECT_KEY_IDENTIFIER="12345678" \
-e APP_STORE_CONNECT_PRIVATE_KEY="`cat ./AuthKey_123456789.p8`" \
-it --rm bednar/app-store-connect-cli <command>Replace <command> with any available Codemagic CLI command.
We welcome contributions from the community. Whether it's improving the Dockerfile, adding more examples, or reporting issues, your input is appreciated.
This project is released under the MIT License. See the LICENSE file in the repository for more details.
If you have any questions or need help, please open an issue in this GitHub repository for support and inquiries. Follow this link to create a new issue: Open an Issue
| Back | FazBrowse Home | New Git URL |