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 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.
概要
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.
引数
<project-path>(必須) — Flowプロジェクトディレクトリへのパス(project.uiprojと少なくとも1つの.flowファイルを含む必要があります)。[output-path](optional) — directory where the generated.nupkgis written before upload. Defaults to a temp directory (<os-tmpdir>/flow-publish-<timestamp>).
オプション
| オプション | 既定 (Default) | 説明 |
|---|---|---|
-n, --name <name> | project folder name | パッケージ名。 |
-v, --version <version> | 1.0.0 | パッケージ バージョン。 |
--feed-id <feedId> | テナント フィード | 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. |
例
# 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
データシェイプ(--output json)
{
"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.
参照
uip maestro flow pack— pack only, without uploadinguip maestro flow init— 最初にプロジェクトを素早く作成するuip maestro flow process— run the published process- フローの概要