This guide provides instructions for migrating Appcircle CLI commands from version 1.x to version 2.0 It outlines the changes in the command structure and provides examples for updating your commands accordingly.
- Modify the syntax of commands according to the changes in version 2.0. Use the following format:
- Old command syntax:
appcircle oldCommand <subcommand> [options] [arguments]
- New command syntax:
appcircle <command> <subcommand> ... <subcommand> [options] [arguments]
- Old command syntax:
This guide outlines the changes required to migrate your existing Appcircle CLI commands from version 1.x to version 2.0. Below, you'll find a list of all commands along with the corresponding changes needed for each.
- appcircle publish profile version markAsRC
- appcircle publish profile version unmarkAsRC
- appcircle listBuildProfiles
- appcircle listBuildProfileBranches
- appcircle listBuildProfileWorkflows
- appcircle listBuildProfileCommits
- appcircle listBuildProfileBuildsOfCommit
- appcircle listDistributionProfiles
- appcircle build
- appcircle download
- appcircle upload
- appcircle createDistributionProfile
- appcircle listEnvironmentVariableGroups
- appcircle createEnvironmentVariableGroup
- appcircle listEnvironmentVariables
- appcircle createEnvironmentVariable
- appcircle listEnterpriseProfiles
- appcircle listEnterpriseAppVersions
- appcircle publishEnterpriseAppVersion
- appcircle unpublishEnterpriseAppVersion
- appcircle removeEnterpriseAppVersion
- appcircle notifyEnterpriseAppVersion
- appcircle uploadEnterpriseAppVersion
- appcircle uploadEnterpriseApp
- appcircle getEnterpriseDownloadLink
Old Command:
$ appcircle publish profile version markAsRC [options] [arguments]
New Command:
$ appcircle publish profile version mark-as-rc [options] [arguments]
Old Command:
$ appcircle publish profile version unmarkAsRC [options] [arguments]
New Command:
$ appcircle publish profile version unmark-as-rc [options] [arguments]
Old Command:
$ appcircle listBuildProfiles [options] [arguments]
New Command:
$ appcircle build profile list [options] [arguments]
Old Command:
$ appcircle listBuildProfileBranches [options] [arguments]
New Command:
$ appcircle build profile branch list [options] [arguments]
Old Command:
$ appcircle listBuildProfileWorkflows [options] [arguments]
New Command:
$ appcircle build profile workflows [options] [arguments]
Old Command:
$ appcircle listBuildProfileConfigurations [options] [arguments]
New Command:
$ appcircle build profile configurations [options] [arguments]
Old Command:
$ appcircle listBuildProfileCommits [options] [arguments]
New Command:
$ appcircle build profile branch commits [options] [arguments]
Old Command:
$ appcircle listBuildProfileBuildsOfCommit [options] [arguments]
New Command:
$ appcircle build list [options] [arguments]
Old Command:
$ appcircle listDistributionProfiles [options] [arguments]
New Command:
$ appcircle distribution profile list [options] [arguments]
Old Command:
$ appcircle build [options] [arguments]
New Command:
$ appcircle build start [options] [arguments]
Old Command:
$ appcircle download [options] [arguments]
New Command:
$ appcircle build download [options] [arguments]
Old Command:
$ appcircle upload [options] [arguments]
New Command:
$ appcircle distribution upload [options] [arguments]
Old Command:
$ appcircle createDistributionProfile [options] [arguments]
New Command:
$ appcircle distribution profile create [options] [arguments]
Old Command:
$ appcircle listEnvironmentVariableGroups [options] [arguments]
New Command:
$ appcircle build variable group list [options] [arguments]
Old Command:
$ appcircle createEnvironmentVariableGroup [options] [arguments]
New Command:
$ appcircle build variable group create [options] [arguments]
Old Command:
$ appcircle listEnvironmentVariables [options] [arguments]
New Command:
$ appcircle build variable view [options] [arguments]
Old Command:
$ appcircle createEnvironmentVariable [options] [arguments]
New Command:
$ appcircle build variable create [options] [arguments]
Old Command:
$ appcircle listEnterpriseProfiles [options] [arguments]
New Command:
$ appcircle enterprise-app-store profile list [options] [arguments]
Old Command:
$ appcircle listEnterpriseAppVersions [options] [arguments]
New Command:
$ appcircle enterprise-app-store version list [options] [arguments]
Old Command:
$ appcircle publishEnterpriseAppVersion [options] [arguments]
New Command:
$ appcircle enterprise-app-store version publish [options] [arguments]
Old Command:
$ appcircle unpublishEnterpriseAppVersion [options] [arguments]
New Command:
$ appcircle enterprise-app-store version unpublish [options] [arguments]
Old Command:
$ appcircle removeEnterpriseAppVersion [options] [arguments]
New Command:
$ appcircle enterprise-app-store version remove [options] [arguments]
Old Command:
$ appcircle notifyEnterpriseAppVersion [options] [arguments]
New Command:
$ appcircle enterprise-app-store version notify [options] [arguments]
Old Command:
$ appcircle uploadEnterpriseAppVersion [options] [arguments]
New Command:
$ appcircle enterprise-app-store version upload-for-profile [options] [arguments]
Old Command:
$ appcircle uploadEnterpriseApp [options] [arguments]
New Command:
$ appcircle enterprise-app-store version upload-without-profile [options] [arguments]
Old Command:
$ appcircle getEnterpriseDownloadLink [options] [arguments]
New Command:
$ appcircle enterprise-app-store version download-link [options] [arguments]