Setting Up Appcircle Distribute Task in Azure DevOps Pipeline
The Appcircle distribute extension allows users to upload their apps and start distribution to test groups or individuals.
How to Add the Appcircle Distribute Task Extension to Your Pipeline
To install the Appcircle Distribute Task Extension, follow these steps:
-
Go to your pipeline, click "Edit" button on the top right corner
-
Search for the “Appcircle distribute” task extension within your
YAML
file. -
Fill out the necessary input fields and click the Add button.
3.1. You can learn more about getting your access token here.
3.2. Find out how to create a distribution profile here
You should add this task extension after completing your build steps.
After filling out the required fields, the AppcircleEnterpriseStore@0
task will appear in your pipeline steps as shown below:
- task: AppcircleDistribute@0
inputs:
accessToken: "APPCIRCLE_ACCESS_TOKEN" # Your Appcircle Access Token
profileId: "APPCIRCLE_PROFILE_ID" # ID of your Appcircle Distribution Profile
appPath: "BUILD_PATH" # Path to your iOS .ipa or .xcarchive, or Android APK or App Bundle
message: "Sample Message" # Custom message for your testers
Discover Extension
You can discover more about this extension and install it by:
Leveraging Environment Variables
Utilize environment variables seamlessly by substituting the parameters with $(VARIABLE_NAME) in your task inputs. The extension automatically retrieves values from the specified environment variables within your pipeline.
References
-
For details on generating an Appcircle Personal Access Token, visit Generating/Managing Personal API Tokens
-
To create or learn more about Appcircle testing and distribution profiles, please refer to Creating or Selecting a Distribution Profile