uipath-cli
latest
false
Guide de l'utilisateur de UiPath CLI
- Vue d'ensemble (Overview)
- Démarrer
- Concepts
- Utilisation de la UiPath CLI
- Guides pratiques
- Revenus CI/CD
- Référence de commande
- Vue d'ensemble (Overview)
- Codes de sortie
- Options globales
- agent codé uip
- uip coder
- uip context-grounding
- UiPath Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- Tâches (Jobs)
- Dossiers
- Processus
- Paquets
- Machines
- Utilisateurs
- Rôles
- Licences
- Flux
- Pièces jointes (Attachments)
- Sessions
- Calendriers
- magasins d'informations d’identification
- journaux-audit
- paramètres
- Actifs
- Compartiments
- Compartiment-fichiers
- Bibliothèques
- Files d'attente (Queues)
- éléments de la file d'attente
- Déclencheurs (Triggers)
- Webhooks
- add-test-data-entity
- ajouter une file d'attente de données de test
- add-test-data-variation
- Analyser
- Construire
- créer-projet
- Différence
- recherche-activités
- Obtenir les règles de l'analyse
- récupérer-activité-xaml par défaut
- Récupérer les erreurs
- obtenir des cas de test manuels
- Obtenir les étapes de test manuelles
- get-library-object-repository
- get-object-repository
- Obtenir les versions
- exemple de workflow
- indiquer l'application
- indiquer l'élément
- inspecter-package
- install-data-fabric-entities
- installer-ou-Update-packages
- list-data-fabric-entités
- list-instances
- listes-exemples-workflow
- Créer un package
- Publier
- remote
- restore
- run, debug & execution
- Exécuter le fichier
- modèles-recherche
- Démarrer-Studio
- arrêter l'exécution
- tm
- UIA
- uip tasks
- Traçages UIP
- uip traces feedback
- Migration
- Référence et assistance
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique.
La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.
Syntax and options for `uip maestro bpmn pack`, which packages a Maestro project directory into a `.nupkg` for Orchestrator publication.
uip maestro bpmn pack packages a Maestro project directory into a .nupkg ready to publish to Orchestrator as a Process Orchestration release. It's registered under the bpmn branch.
Synthèse
uip maestro bpmn pack <projectPath> <outputPath> [-n <name>] [-v <version>]
[--author <author>] [--description <text>]
[--repository-url <url>] [--repository-commit <sha>]
[--repository-branch <branch>] [--repository-type <type>]
[--release-notes <text>] [--project-url <url>]
uip maestro bpmn pack <projectPath> <outputPath> [-n <name>] [-v <version>]
[--author <author>] [--description <text>]
[--repository-url <url>] [--repository-commit <sha>]
[--repository-branch <branch>] [--repository-type <type>]
[--release-notes <text>] [--project-url <url>]
Les options globales sont respectées. Les codes de sortie suivent le contrat standard.
Arguments
<projectPath>(obligatoire) : chemin d'accès au répertoire du projet Maestro (doit contenirproject.uiproj, une.bpmnet les fichiers de métadonnées créés parinit).<outputPath>(obligatoire) — le répertoire de sortie où le.nupkgsera écrit.
Options
| Option | Description |
|---|---|
-n, --name <name> | Package name. Defaults to the project folder name. |
-v, --version <version> | Package version. Defaults to 1.0.0. |
--author <author> | Auteur du package. |
--description <text> | Description du package. |
--repository-url <url> | Source repository URL, recorded in the package for traceability. |
--repository-commit <sha> | Source repository commit hash, recorded for traceability. |
--repository-branch <branch> | Branche du référentiel source. |
--repository-type <type> | Source repository type. Defaults to git when --repository-url is set. |
--release-notes <text> | Notes de publication du package. |
--project-url <url> | URL de l'idée Automation Hub. |
Exemples
# Pack with defaults
uip maestro bpmn pack ./invoice-orchestration ./dist
# Pack with an explicit version
uip maestro bpmn pack ./invoice-orchestration ./dist --version 1.2.0
# Pack with traceability metadata for CI provenance
uip maestro bpmn pack ./invoice-orchestration ./dist --version 1.2.0 \
--repository-url https://github.com/acme/invoice-orchestration \
--repository-commit "$GIT_SHA" --repository-branch main
# Pack with defaults
uip maestro bpmn pack ./invoice-orchestration ./dist
# Pack with an explicit version
uip maestro bpmn pack ./invoice-orchestration ./dist --version 1.2.0
# Pack with traceability metadata for CI provenance
uip maestro bpmn pack ./invoice-orchestration ./dist --version 1.2.0 \
--repository-url https://github.com/acme/invoice-orchestration \
--repository-commit "$GIT_SHA" --repository-branch main
Format des données (--sortie json)
{
"Code": "MaestroPack",
"Data": {
"Package": "invoice-orchestration@1.2.0",
"Output": "./dist/invoice-orchestration.processOrchestration.ProcessOrchestration.1.2.0.nupkg"
}
}
{
"Code": "MaestroPack",
"Data": {
"Package": "invoice-orchestration@1.2.0",
"Output": "./dist/invoice-orchestration.processOrchestration.ProcessOrchestration.1.2.0.nupkg"
}
}
Le nom de fichier .nupkg généré code <name>.processOrchestration.ProcessOrchestration.<version>.nupkg
Voir également
uip maestro bpmn init— élaboration du projet d'aborduip maestro bpmn debug— test de fumée avant la mise en packageuip maestro bpmn validate— valider avant la mise en packageuip maestro bpmn process publish— pack and publish to Orchestrator in one step- Vue d’ensemble de Maestro