uip codedapp push
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]
Options
| Flag | Description |
|---|---|
--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). |
Examples
# 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." }
}
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.