Setting Up Appcircle Testing Distribution Action
The Appcircle Testing Distribution action allows users to upload their apps and start distribution to test groups or individuals.
Discover Action
You can discover more about this action and install it by:
How to Add the Appcircle Distribute Task Extension to Your Pipeline
To install the Appcircle Testing Distribution action, add the following step to your pipeline at the end:
- name: Distribute App to Appcircle
  id: testing-distribution
    uses: appcircleio/appcircle-testing-distribution-githubaction@v0.0.1 # provide the version you want to use
  with:
    accessToken: ${{ secrets.AC_ACCESS_TOKEN }} # Your Appcircle Access Token
    profileID: ${{ secrets.AC_PROFILE_ID }} # ID of your Appcircle Distribution Profile
    appPath: ${{ secrets.APP_PATH }} # Path to your iOS .ipa or .xcarchive, or Android APK or App Bundle
    message: ${{ secrets.MESSAGE }} # Your Message
You should add this task extension after completing your build steps.
Leveraging Environment Variables
Utilize environment variables seamlessly by substituting the parameters with secrets.NAME in your task inputs. The action 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