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
- restore
- run-file
- search-templates
- start-studio
- stop-execution
- uia
- uip traces
- 迁移
- Reference & support
UiPath CLI user guide
上次更新日期 2026年5月7日
uip codedapp push uploads local source to a Studio Web project. It uploads the contents of --build-dir (default dist) after an optional resource import. Use it to ship local edits back to a project that was originally pulled from Studio Web.
Synopsis
uip codedapp push [options]
uip codedapp push [options]
选项
| 标记 | 描述 |
|---|---|
--project-id <id> | WebApp project ID. Reads from project metadata in the working directory if omitted. |
--build-dir <dir> | Build output directory. Default: dist. |
--ignore-resources | Skip importing referenced resources. |
-v, --version <version> | Set an explicit code version (for example, 2.0.0). |
--verbose | Show detailed progress logs. |
--base-url <url> | UiPath base URL (auth override). |
--org-id <id> | Organization ID (auth override). |
--tenant-id <id> | Tenant ID (auth override). |
--access-token <token> | Access token (auth override). |
示例
# Push from the default ./dist build directory
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001
# Custom build directory and explicit version
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001 \
--build-dir build \
--version 2.0.0
# Skip resource imports
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001 \
--ignore-resources
# Push from the default ./dist build directory
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001
# Custom build directory and explicit version
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001 \
--build-dir build \
--version 2.0.0
# Skip resource imports
uip codedapp push --project-id a1b2c3d4-0000-0000-0000-000000000001 \
--ignore-resources
Data shape (--output json)
{
"Code": "PushCompleted",
"Data": { "message": "Push completed successfully." }
}
{
"Code": "PushCompleted",
"Data": { "message": "Push completed successfully." }
}
Related
- uip codedapp pull — fetch a remote project to local disk before editing.
- uip codedapp pack — package the build for publication once it's pushed.