Setting Up Appcircle Enterprise Store Plugin
The Appcircle Enterprise Store plugin allows users to publish their apps and start distribution to test groups or individuals.
Discover Action
You can discover more about this action and install it by:
Getting Started
To get started with appcircle_enterprise_store
, add it to your project by running:
fastlane add_plugin appcircle_enterprise_store
After adding the plugin to your project, configure your Fastfile as follows:
lane :distribute_app_store do
appcircle_enterprise_store(
accessToken: "$(AC_ACCESS_TOKEN)",
entProfileId: "$(ENTERPRISE_PROFILE_ID)",
appPath: "$(APP_PATH)",
summary: "$(SUMMARY)",
releaseNotes: "$(RELEASE_NOTE)",
publishType: "$(PUBLISH_TYPE)" # Assign the appropriate number based on the status: None (0), Beta (1), Live (2)
)
end
You should add this task extension after completing your build steps.
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.