uipath-cli
latest
false
- 概要
- はじめに
- 概念
- Using UiPath CLI
- 使用ガイド
- CI/CD recipes
- コマンド リファレンス
- 概要
- 終了コード
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- プロジェクトを作成
- 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
- 元に戻す
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- 移行
- Reference & support
UiPath CLI user guide
最終更新日時 2026年5月7日
uip maestro pack packages a Maestro project directory into a .nupkg ready to publish to Orchestrator as a Process Orchestration release.
Synopsis
uip maestro pack <projectPath> <outputPath> [-n <name>] [-v <version>]
uip maestro pack <projectPath> <outputPath> [-n <name>] [-v <version>]
Honors global options. Exit codes follow the standard contract.
引数
<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.
オプション
-n, --name <name>— package name. Defaults to the project folder name.-v, --version <version>— package version. Defaults to1.0.0.
例
# Pack with defaults
uip maestro pack ./invoice-orchestration ./dist
# Pack with an explicit version
uip maestro pack ./invoice-orchestration ./dist --version 1.2.0
# Pack with defaults
uip maestro pack ./invoice-orchestration ./dist
# Pack with an explicit version
uip maestro pack ./invoice-orchestration ./dist --version 1.2.0
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.
参照
uip maestro init— scaffold the project firstuip maestro debug— smoke-test before packing- Maestro overview