uipath-cli
latest
false
UiPath CLI user guide
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip coder
- uip context-grounding
- uip docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- diff
- find-activities
- get-analyzer-rules
- get-default-activity-xaml
- get-errors
- get-manual-test-cases
- get-manual-test-steps
- get-library-object-repository
- get-object-repository
- get-versions
- get-workflow-example
- indicate-application
- indicate-element
- inspect-package
- install-data-fabric-entities
- install-or-update-packages
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- pack
- publish
- remote
- restore
- run, debug & execution
- run-file
- search-templates
- start-studio
- stop-execution
- tm
- uia
- uip tasks
- uip traces
- uip traces feedback
- Migration
- Reference & support
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.
Synopsis
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>]
Honors global options. Exit codes follow the standard contract.
Arguments
<projectPath>(required) — path to the Maestro project directory (must containproject.uiproj, a.bpmn, and the metadata files created byinit).<outputPath>(required) — output directory where the.nupkgwill be written.
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> | Package author. |
--description <text> | Package description. |
--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> | Source repository branch. |
--repository-type <type> | Source repository type. Defaults to git when --repository-url is set. |
--release-notes <text> | Release notes for the package. |
--project-url <url> | Automation Hub idea URL. |
Examples
# 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
Data shape (--output 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"
}
}
The generated .nupkg filename encodes <name>.processOrchestration.ProcessOrchestration.<version>.nupkg.
See also
uip maestro bpmn init— scaffold the project firstuip maestro bpmn debug— smoke-test before packinguip maestro bpmn validate— validate before packinguip maestro bpmn process publish— pack and publish to Orchestrator in one step- Maestro overview