Skip to main content

Setting Up Appcircle Enterprise App Store in Your Pipeline

Appcircle Enterprise App Store serves as your private mobile app store, allowing access to in-house apps through a customizable mobile storefront. The Appcircle Enterprise App Store extension enables you to upload your app to your personalized app store within Appcircle.

How to Install the Appcircle Enterprise App Store Task in Your Pipeline

In order to install Appcircle Enterprise App Store task extension, follow these steps;

  1. Go to your pipeline, click "Edit" button on the top right corner

  2. Inside your YAML file, search for "Appcircle Enterprise App Store" task extension

  3. Complete the necessary input fields and then click the "Add" button.

    3.1. You can learn more about getting your personal api token here.

info

Ensure that this action is added after build steps have been completed.

After filling out the required fields, the AppcircleEnterpriseStore@0 task will appear in your pipeline steps as shown below:

- task: AppcircleEnterpriseStore@0
inputs:
accessToken: "ACCESS_TOKEN" # Appcircle Personal API Token
entProfileId: "ENT_PROFILE_ID" # Enterprise Profile Id
appPath: "APP_PATH" # Your App Path
summary: "SUMMARY" # Your Summary
releaseNotes: "RELEASE_NOTE" # Your Release Note
publishType: "PUBLISH_TYPE" # None, Beta, Live

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