cicd-integrations
2023.10
false
  • 概述
    • 关于 CI/CD 管道
  • UiPath CLI
  • Azure DevOps 扩展程序
  • Jenkins 插件
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。 新发布内容的本地化可能需要 1-2 周的时间才能完成。
UiPath logo, featuring letters U and I in white

CI/CD 集成用户指南

上次更新日期 2025年11月18日

将项目打包到包中

Prerequisites:

  • 创建项目。
  • 运行 CLI exe (适用于 Windows)或dll (适用于 Linux)文件。
  • 添加所需的 Orchestrator API 访问应用程序作用域

要将项目打包到包中,请执行以下步骤:

  1. 使用uipcli package运行package任务。 您可以查看可用子任务的列表。
  2. 指定所需的参数并运行pack子任务。请参阅下面的参数列表。
备注:

UiPath CLI 的“打包”或“分析”任务不执行项目验证。

Legend: (*) - Optional, useful only when you have dependencies from a library in Orchestrator.

参数描述
-o、或 --output必要项要在其中打包项目的目标 Orchestrator 文件夹。
-v, or --version设置包版本。
--autoVersion自动生成包版本。
--outputType强制输出为指定的类型。
--splitOutput启用到运行时库和设计库的输出拆分。
--repositoryUrl项目进行版本控制时所在的存储库 URL。
--repositoryCommit从中提交构建项目的存储库。
--repositoryBranch从中构建项目的存储库分支。
--repositoryTypeVCS 系统存储库类型。
--projectUrlAutomation Hub 概念 URL。
--releaseNotes添加发行说明。
--libraryOrchestratorUsername (*)(如果通过用户名和密码使用基本身份验证则为必填项用于对 Orchestrator 进行身份验证的用户名。您必须将其与相应的密码配对。如果包从 Orchestrator 订阅源引用库,则这是必需的
--libraryOrchestratorPassword (*)(如果通过用户名和密码使用基本身份验证则为必填项用于对 Orchestrator 进行身份验证的密码。您必须将其与相应的用户名配对。如果包从 Orchestrator 订阅源引用库,则这是必需的
--libraryOrchestratorAuthToken (*)(如果您使用 基于令牌的身份验证 则为必填项 )用于对 Orchestrator 进行身份验证的OAuth2 刷新令牌。您必须将其与帐户名称客户端 ID配对。如果包从 Orchestrator 订阅源引用库,则这是必需的
--libraryOrchestratorAccountName (*)(如果您使用 基于令牌的身份验证 则为必填项 )Orchestrator CloudRPA 帐户名称。您必须将其与OAuth2 刷新令牌客户端 ID配对。如果包从 Orchestrator 订阅源引用库,则这是必需的
--libraryOrchestratorAccountForApp (*)Orchestrator CloudRPA 帐户名称(组织名称)。您必须将其与外部应用程序的应用程序 ID应用程序密码应用程序作用域配对如果包从 Orchestrator 订阅源中引用了库,则这是必需项。
--libraryOrchestratorApplicationId (*)(如果您使用 外部应用程序身份验证, 则为必填项外部应用程序 ID。您必须将其与“应用程序帐户”“应用程序密码”“应用程序作用域”配对。如果包从 Orchestrator 订阅源中引用库,则这是必需的。
--libraryOrchestratorApplicationSecret (*)(如果您使用 外部应用程序身份验证, 则为必填项外部应用程序密码。您必须将其与“应用程序帐户”“应用程序 ID”“应用程序作用域”配对。如果包从 Orchestrator 订阅源中引用库,则这是必需的。
--libraryOrchestratorApplicationScope (*)(如果您使用 外部应用程序身份验证, 则为必填项应用程序作用域列表,以单个空格分隔。您必须将其与外部应用程序的“应用程序帐户”“应用程序 ID”“应用程序密码”配对。如果包从 Orchestrator 订阅源中引用库,则这是必需的。
--libraryOrchestratorFolder (*)目标 Orchestrator 文件夹的名称。 要输入子文件夹,请确保同时输入父文件夹的名称和子文件夹的名称。例如,AccountingTeam\TeamJohn
--libraryOrchestratorUrl (*)Orchestrator 实例的 URL。
--libraryOrchestratorTenant (*)要删除计算机的 Orchestrator 实例的租户。
--libraryIdentityUrl(对于PaaSMSI部署为必需身份服务器的 URL。
-y, or --disableTelemetry禁用遥测数据。
--traceLevel显示事件的跟踪。
-l, or --languageOrchestrator 用户界面中使用的语言。
--disableBuiltInNugetFeeds禁用内置 NuGet 订阅源。
--help显示此命令的参数和示例。
--version显示版本信息。
Project(s) Path (pos. 0)必填project.json文件或包含project.json文件的文件夹的路径。

用法:

package pack <project_path> -o <destination_folder> [-v <version>] [--autoVersion] [--outputType <Process|Library|Tests|Objects>] [--libraryOrchestratorUrl <orchestrator_url> --libraryOrchestratorTenant <orchestrator_tenant>] [--libraryOrchestratorUsername <orchestrator_user> --libraryOrchestratorPassword <orchestrator_pass>] [--libraryOrchestratorAuthToken <auth_token> --libraryOrchestratorAccountName <account_name>] [--libraryOrchestratorFolder <folder>] [-l <language>]package pack <project_path> -o <destination_folder> [-v <version>] [--autoVersion] [--outputType <Process|Library|Tests|Objects>] [--libraryOrchestratorUrl <orchestrator_url> --libraryOrchestratorTenant <orchestrator_tenant>] [--libraryOrchestratorUsername <orchestrator_user> --libraryOrchestratorPassword <orchestrator_pass>] [--libraryOrchestratorAuthToken <auth_token> --libraryOrchestratorAccountName <account_name>] [--libraryOrchestratorFolder <folder>] [-l <language>]

示例:

  • package pack "C:\UiPath\Project\project.json" -o "C:\UiPath\Package"
  • package pack "C:\UiPath\Project\project.json" -o "C:\UiPath\Package" -v 1.0.6820.22047
  • package pack "C:\UiPath\Project\project.json" -o "C:\UiPath\Package" --autoVersion
  • package pack "C:\UiPath\Project" -o "C:\UiPath\Package"
  • package pack "C:\UiPath\Project\project.json" -o "C:\UiPath\Package" --outputType Tests -l en-US

此页面有帮助吗?

获取您需要的帮助
了解 RPA - 自动化课程
UiPath Community 论坛
Uipath Logo
信任与安全
© 2005-2025 UiPath。保留所有权利。