uipath-cli
latest
false
UiPath CLI ユーザー ガイド
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- 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
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-library-object-repository
- get-object-repository
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-instances
- list-workflow-examples
- パッケージ化
- パブリッシュ
- remote
- 元に戻す
- run, debug & execution
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- tm
- UIA
- uip tasks
- uip traces
- uip traces feedback
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
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.
概要
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>]
引数
<projectPath>(必須) — Maestro プロジェクト ディレクトリへのパスです (project.uiproj、.bpmn、およびinitが作成したメタデータ ファイルが含まれている必要があります)。<outputPath>(必須) —.nupkgが書き込まれる出力ディレクトリです。
オプション
| オプション | 説明 |
|---|---|
-n, --name <name> | Package name. Defaults to the project folder name. |
-v, --version <version> | Package version. Defaults to 1.0.0. |
--author <author> | パッケージ作成者 |
--description <text> | パッケージの説明。 |
--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> | ソース リポジトリ ブランチ。 |
--repository-type <type> | Source repository type. Defaults to git when --repository-url is set. |
--release-notes <text> | パッケージのリリース ノート |
--project-url <url> | Automation Hub のアイデアの URL |
例
# 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
データシェイプ(--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"
}
}
生成された .nupkg ファイル名は、 <name>.processOrchestration.ProcessOrchestration.<version>.nupkgをエンコードします。
参照
uip maestro bpmn init— 最初にプロジェクトを素早く作成するuip maestro bpmn debug— 梱包前のスモークテストuip maestro bpmn validate— 梱包前の検証uip maestro bpmn process publish— pack and publish to Orchestrator in one step- Maestro の概要