uipath-cli
latest
false
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Using UiPath CLI
- Guides pratiques
- CI/CD recipes
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- créer-projet
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-workflow-examples
- pack
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- Migration
- Reference & support
UiPath CLI user guide
Dernière mise à jour 7 mai 2026
uip codedapp publish uploads a packaged .nupkg to UiPath and registers the coded app. It reads packages from --uipath-dir (default ./.uipath); pass --name (and optionally --version) to publish non-interactively, otherwise the tool prompts. --type controls whether the package registers as a Web app or an Action.
Synopsis
uip codedapp publish [options]
uip codedapp publish [options]
Options
| Drapeau | Description |
|---|---|
-n, --name <name> | Package name (non-interactive). |
-v, --version <version> | Package version (requires --name). |
-t, --type <type> | App type: Web or Action. Default: Web. |
--uipath-dir <dir> | Directory containing the packages to publish. Default: ./.uipath. |
--base-url <url> | UiPath base URL (auth override). |
--org-id <id> | Organization ID (auth override). |
--tenant-id <id> | Tenant ID (auth override). |
--tenant-name <name> | Tenant name (auth override). |
--access-token <token> | Access token (auth override). |
Exemples
# Non-interactive publish of a specific version
uip codedapp publish --name "MyApp" --version "1.0.0"
# Register as an Action app instead of a Web app
uip codedapp publish --name "MyApprovalAction" --type Action
# Publish from a non-default packages directory
uip codedapp publish --name "MyApp" --uipath-dir ./packages
# Non-interactive publish of a specific version
uip codedapp publish --name "MyApp" --version "1.0.0"
# Register as an Action app instead of a Web app
uip codedapp publish --name "MyApprovalAction" --type Action
# Publish from a non-default packages directory
uip codedapp publish --name "MyApp" --uipath-dir ./packages
Data shape (--output json)
{
"Code": "PublishCompleted",
"Data": { "message": "Package published successfully." }
}
{
"Code": "PublishCompleted",
"Data": { "message": "Package published successfully." }
}
Related
- uip codedapp pack — produce the
.nupkgthatpublishuploads. - uip codedapp deploy — deploy or upgrade the app once it's published.