uipath-cli
latest
false
- 概要
- はじめに
- 概念
- UiPath CLI を使用する
- UiPath for Coding Agents
- 使用ガイド
- CI/CD レシピ
- コマンド リファレンス
- 概要
- 終了コード
- グローバル オプション
- uip codedagent
- uip docsai
- add-test-data-entity
- テスト データのキューを追加
- 追加-テスト-データ-バリエーション
- 分析
- 開発
- プロジェクトを作成
- 差分
- アクティビティを検索
- GET-ANALYZER-RULES
- get-default-activity-xaml
- エラーを取得
- 手動テスト用のテスト ケースを取得
- 手動テストステップを取得
- get-versions
- Get-workflow-example
- indicate-application
- 要素を示す
- inspect-package
- install-data-fabric-entities
- パッケージのインストールまたは更新
- list-data-fabric-entities
- list-workflow-examples
- パッケージ化
- 元に戻す
- ファイル名を実行
- 検索テンプレート
- スタートスタジオ
- 実行を停止
- UIA
- UIP トレース
- 移行
- 参照とサポート
重要 :
このコンテンツは機械翻訳によって処理されています。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
UiPath CLI ユーザー ガイド
ビルドされたコード化されたアプリを.nupkgアーカイブにパッケージ化uip codedapp pack、パブリッシュの準備が整います。<dist> ディレクトリを読み取り、提供されたパッケージ メタデータを適用して、アーカイブを --output に書き込みます (既定値は [./.uipathです)。--dry-run を使用すると、アーカイブを書き込まずにファイルの一覧をプレビューできます。
概要
uip codedapp pack <dist> [options]
uip codedapp pack <dist> [options]
<dist>— ビルドされたアプリケーションを含む dist フォルダーへのパス。
オプション
| フラグ | 説明 |
|---|---|
-n, --name <name> | パッケージ名。 |
-v, --version <version> | パッケージ バージョン。既定値は [ 1.0.0] です。 |
-o, --output <dir> | 出力ディレクトリ。既定値は [ ./.uipath] です。 |
--author <author> | パッケージ作成者既定値は [ UiPath Developer] です。 |
--description <desc> | パッケージの説明。 |
--main-file <file> | メインエントリファイル。既定値は [ index.html] です。 |
--content-type <type> | コンテンツの種類: webapp、 library、または process。既定値は [ webapp] です。 |
--dry-run | アーカイブを書き込まずにパッケージ化する内容を示します。 |
--reuse-client | 新しい clientId を発行するのではなく、 uipath.json の既存のを再利用します。 |
--base-url <url> | UiPath ベース URL (認証の上書き)。 |
--org-id <id> | 組織 ID (認証の上書き)。 |
--tenant-id <id> | テナント ID (認証の上書き)。 |
--access-token <token> | アクセス トークン (認証の上書き)。 |
例
# Default — writes ./.uipath/MyApp.1.0.0.nupkg
uip codedapp pack ./dist --name "MyApp" --version "1.0.0"
# Custom output directory and author
uip codedapp pack ./dist \
--name "MyApp" --version "2.0.0" \
--output ./packages \
--author "Contoso Ltd."
# Preview the file list — no archive written
uip codedapp pack ./dist --name "MyApp" --dry-run
# Default — writes ./.uipath/MyApp.1.0.0.nupkg
uip codedapp pack ./dist --name "MyApp" --version "1.0.0"
# Custom output directory and author
uip codedapp pack ./dist \
--name "MyApp" --version "2.0.0" \
--output ./packages \
--author "Contoso Ltd."
# Preview the file list — no archive written
uip codedapp pack ./dist --name "MyApp" --dry-run
データシェイプ(--output json)
{
"Code": "PackCompleted",
"Data": { "message": "Package created successfully." }
}
{
"Code": "PackCompleted",
"Data": { "message": "Package created successfully." }
}
関連
- uip codedapp push — パッケージ化する前にソースを Studio Web に送付します。
- uip codedapp publish — 結果の
.nupkgを UiPath にアップロードします。