uipath-cli
latest
false
- Información general
- Comience ya
- Conceptos
- Using UiPath CLI
- Guías prácticas
- CI/CD recipes
- Referencia de los comandos
- Información general
- Códigos de salida
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- Crear proyecto
- 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
- Migración
- Reference & support
UiPath CLI user guide
Última actualización 7 de may. de 2026
uip codedapp deploy deploys or upgrades a published app in UiPath. It targets the latest published version by default; pass --version to pin a specific build. Use --folder-key to pick the destination folder when the deployment is folder-scoped.
Synopsis
uip codedapp deploy [options]
uip codedapp deploy [options]
Opciones
| Marca | Descripción |
|---|---|
-n, --name <name> | App name. |
-v, --version <version> | Target a specific published version. Defaults to the latest published version. |
--base-url <url> | UiPath base URL (auth override). |
--org-id <id> | Organization ID (auth override). |
--org-name <name> | Organization name (auth override). |
--tenant-id <id> | Tenant ID (auth override). |
--folder-key <key> | Folder key to deploy into. |
--access-token <token> | Access token (auth override). |
Ejemplos
# Deploy / upgrade to the latest published version
uip codedapp deploy --name "MyApp"
# Pin a specific version
uip codedapp deploy --name "MyApp" --version "1.0.0"
# Deploy into a folder
uip codedapp deploy --name "MyApp" \
--folder-key f0f0f0f0-0000-0000-0000-000000000001
# Deploy / upgrade to the latest published version
uip codedapp deploy --name "MyApp"
# Pin a specific version
uip codedapp deploy --name "MyApp" --version "1.0.0"
# Deploy into a folder
uip codedapp deploy --name "MyApp" \
--folder-key f0f0f0f0-0000-0000-0000-000000000001
Data shape (--output json)
{
"Code": "DeployCompleted",
"Data": { "message": "App deployed successfully." }
}
{
"Code": "DeployCompleted",
"Data": { "message": "App deployed successfully." }
}
Related
- uip codedapp publish — publish the package that
deployactivates. - uip codedapp pack — produce the
.nupkgconsumed bypublish.