UiPath Documentation
uipath-cli
latest
false
UiPath CLI user guide

uip codedapp pack

Syntax and options for `uip codedapp pack`, which packages a built coded app into a `.nupkg` archive for publication.

uip codedapp pack packages a built coded app into a .nupkg archive ready for publication. It reads the <dist> directory, applies the supplied package metadata, and writes the archive to --output-dir (defaults to ./.uipath). Use --dry-run to preview the file list without writing the archive. This is a local, unauthenticated packaging step — it accepts no login/auth-override flags; those only apply to push/pull/publish/deploy.

Synopsis

uip codedapp pack <dist> [options]
uip codedapp pack <dist> [options]
  • <dist> — path to the dist folder containing the built application.

Options

FlagDescription
-n, --name <name>Package name.
--display-name <name>Human-readable app title shown in UiPath. Defaults to --name as typed.
-v, --version <version>Package version. Default: 1.0.0.
--output-dir <dir>Output directory. Default: ./.uipath.
--author <author>Package author. Default: UiPath Developer.
--description <desc>Package description.
--main-file <file>Main entry file. Default: index.html.
--content-type <type>Content type: webapp, library, or process. Default: webapp.
--repository-url <url>Source repository URL, recorded in the package for traceability.
--repository-commit <sha>Source repository commit hash, recorded for traceability.
--repository-branch <branch>Source repository branch.
--repository-type <type>Source repository type. Defaults to git when --repository-url is set.
--release-notes <text>Release notes for the package.
--project-url <url>Automation Hub idea URL.
--dry-runShow what would be packaged without writing the archive.

Examples

# 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-dir ./packages \
    --author "Contoso Ltd."

# Separate display title — package id stays my-app
uip codedapp pack ./dist --name "my-app" --display-name "My App" --version "1.0.0"

# 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-dir ./packages \
    --author "Contoso Ltd."

# Separate display title — package id stays my-app
uip codedapp pack ./dist --name "my-app" --display-name "My App" --version "1.0.0"

# Preview the file list — no archive written
uip codedapp pack ./dist --name "MyApp" --dry-run

Data shape (--output json)

{
  "Code": "PackCompleted",
  "Data": {
    "Message": "Package created successfully.",
    "Package": "myapp@1.0.0",
    "Output": ".uipath/myapp.1.0.0.nupkg"
  }
}
{
  "Code": "PackCompleted",
  "Data": {
    "Message": "Package created successfully.",
    "Package": "myapp@1.0.0",
    "Output": ".uipath/myapp.1.0.0.nupkg"
  }
}

A dry run (--dry-run) returns Code: "PackDryRunCompleted" and Data: { DryRun: true, Message: "Dry run - no package created.", Package, Output } instead — no archive is written, but Output still shows the path it would take.

See also

  • Synopsis
  • Options
  • Examples
  • Data shape (--output json)
  • Related
  • See also

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated