uipath-cli
latest
false
Guía del usuario de UiPath CLI
- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
Importante :
Este contenido se ha traducido mediante traducción automática.
La localización de contenidos recién publicados puede tardar entre una y dos semanas en estar disponible.
Syntax and options for `uip maestro flow publish`, which packs a Flow project and uploads the resulting `.nupkg` directly to Orchestrator packages.
uip maestro flow publish packs a Flow project directory and uploads the resulting .nupkg to Orchestrator packages in one step — a shortcut for uip maestro flow pack followed by a manual upload.
Sinopsis
uip maestro flow publish <project-path> [output-path] [-n <name>] [-v <version>] [--feed-id <id> | --folder-key <key> | --folder-path <path>]
uip maestro flow publish <project-path> [output-path] [-n <name>] [-v <version>] [--feed-id <id> | --folder-key <key> | --folder-path <path>]
Honors global options. Exit codes follow the standard contract. Requires uip login.
Argumentos
<project-path>(obligatorio) : ruta al directorio del proyecto Flow (debe contenerproject.uiprojy al menos un archivo.flow).[output-path](optional) — directory where the generated.nupkgis written before upload. Defaults to a temp directory (<os-tmpdir>/flow-publish-<timestamp>).
Opciones
| Opción | Predeterminado | Descripción |
|---|---|---|
-n, --name <name> | project folder name | Nombre del paquete. |
-v, --version <version> | 1.0.0 | Versión del paquete. |
--feed-id <feedId> | Transmisión de inquilinos | Target feed ID. Mutually exclusive with --folder-key/--folder-path. |
--folder-key <key> | — | Orchestrator folder key (GUID) whose folder-hierarchy feed to publish into — the CLI resolves the feed ID automatically. Mutually exclusive with --feed-id/--folder-path. |
--folder-path <path> | — | Orchestrator folder path, e.g. Shared/Sub — resolved to a feed ID the same way as --folder-key. Mutually exclusive with --feed-id/--folder-key. |
Ejemplos
# Pack and publish to the tenant feed
uip maestro flow publish ./my-flow-project --version 1.2.0
# Publish into a specific folder's feed
uip maestro flow publish ./my-flow-project --folder-key c3d4e5f6-… --version 1.2.0
# Pack and publish to the tenant feed
uip maestro flow publish ./my-flow-project --version 1.2.0
# Publish into a specific folder's feed
uip maestro flow publish ./my-flow-project --folder-key c3d4e5f6-… --version 1.2.0
Forma de datos (--json de salida)
{
"Code": "FlowPublish",
"Data": {
"Package": "my-flow-project@1.2.0",
"PackagePath": "/tmp/flow-publish-1710000000000/my-flow-project.flow.Flow.1.2.0.nupkg",
"Upload": [
{ "key": "my-flow-project.flow.Flow.1.2.0.nupkg", "status": "Created" }
]
}
}
{
"Code": "FlowPublish",
"Data": {
"Package": "my-flow-project@1.2.0",
"PackagePath": "/tmp/flow-publish-1710000000000/my-flow-project.flow.Flow.1.2.0.nupkg",
"Upload": [
{ "key": "my-flow-project.flow.Flow.1.2.0.nupkg", "status": "Created" }
]
}
}
Upload[].status is "Created" the first time a given package version is uploaded, or the feed's own conflict status on a repeat upload of the same name/version.
Ver también
uip maestro flow pack— pack only, without uploadinguip maestro flow init: aplicar andamios al proyecto primerouip maestro flow process— run the published process- Descripción general del flujo