Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to push IPA to App Center Distribute from Continuous Integration Server

How do you push an iOS IPA file to App Center Distribute from the command line?

I'm using a CI (Continuous Integration) server to build my app, and I tried using the following command, given by the App Center Test portal, but it isn't working and outputs the error, below:

appcenter distribute release -f ~/Desktop/MondayPundayApp.ipa -g Collaborators --app Punday/mondaypundayapp--ios

Command 'appcenter distribute release' requires a logged in user. Use the 'appcenter login' command to log in

like image 204
Brandon Minnick Avatar asked May 16 '18 03:05

Brandon Minnick


People also ask

How do I distribute iOS app in Appcenter?

Click on the Distribute new release button in the portal and upload your build of the app. Once the upload has finished, click Next and select the Distribution group that you created as the Destination of that app distribution. Review the Distribution and distribute the build to your in-app testing group.


1 Answers

Push to App Center Test from CLI

1. Manually Retrieve an API Token

The App Center CLI requires the user to be logged in, and we can log in from our build server by providing a login token.

Using the App Center CLI, enter the following command, replacing [Name Of Token] with whatever you want to name this token

appcenter login
appcenter tokens create -d "[Name Of Token]"

It will provide a response like this:

ID: [Unique Guid]

API Token: [Unique API Token]

Description: [Name of Token]

Created at: [Time Stamp]

Copy the API Token result. We will use this in our CI script.

2. App Center Distribute Script for CI Server

In your Continuous Integration pipeline, use this bash script to push the IPA File to App Center Distribute

The bash script does the following:

  1. Locate the IPA file
  2. Install the appcenter cli
  3. Log in to App Center using the API Token
  4. Push the IPA to App Center Distribute
#!/usr/bin/env bash

IPAFile=`find . -name *.ipa | head -1`

npm install -g [email protected]

appcenter login --token [login token]

appcenter distribute release -f $IPAFile -g Collaborators --app Punday/mondaypundayapp--ios 
like image 182
Brandon Minnick Avatar answered Oct 17 '22 02:10

Brandon Minnick