uipath-cli
latest
false
- Overview
- Get started
- Concepts
- Using UiPath CLI
- How-to guides
- CI/CD recipes
- Command reference
- Overview
- Exit codes
- Global options
- uip codedagent
- uip docsai
- add-test-data-entity
- add-test-data-queue
- add-test-data-variation
- analyze
- build
- create-project
- 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
- Migration
- Reference & support
UiPath CLI user guide
Last updated May 7, 2026
uip api-workflow pack builds an API Workflow project and packages it into a .nupkg ready to publish. Code signing is optional — pass a .pfx certificate path, password, and timestamp server to produce a signed package.
Synopsis
uip api-workflow pack <projectPath> <destinationPath> [options]
uip api-workflow pack <projectPath> <destinationPath> [options]
<projectPath>— path to the API Workflow project directory or.uipfile.<destinationPath>— directory where the.nupkgis written.
Options
| Flag | Description |
|---|---|
--package-id <id> | NuGet package ID (overrides the project default). |
--package-version <version> | NuGet package version. |
--package-author <author> | NuGet package author. |
--package-description <desc> | NuGet package description. |
--signing-certificate-path <path> | Path to a .pfx certificate for signing. |
--signing-certificate-password <password> | Certificate password. |
--signing-timestamp-server <url> | Timestamp server URL for signed packages. |
Examples
# Pack with the project's defaults
uip api-workflow pack ./my-workflow ./output
# Override package metadata
uip api-workflow pack ./my-workflow ./output \
--package-id MyOrg.Workflows.Onboarding \
--package-version 1.2.0 \
--package-author "Contoso Ltd."
# Sign the package
uip api-workflow pack ./my-workflow ./output \
--signing-certificate-path ./certs/codesign.pfx \
--signing-certificate-password "$CERT_PASSWORD" \
--signing-timestamp-server http://timestamp.digicert.com
# Pack with the project's defaults
uip api-workflow pack ./my-workflow ./output
# Override package metadata
uip api-workflow pack ./my-workflow ./output \
--package-id MyOrg.Workflows.Onboarding \
--package-version 1.2.0 \
--package-author "Contoso Ltd."
# Sign the package
uip api-workflow pack ./my-workflow ./output \
--signing-certificate-path ./certs/codesign.pfx \
--signing-certificate-password "$CERT_PASSWORD" \
--signing-timestamp-server http://timestamp.digicert.com
Data shape (--output json)
{
"Code": "ApiWorkflowPack",
"Data": {
"Success": true,
"Packages": ["./output/my-workflow.1.0.0.nupkg"]
}
}
{
"Code": "ApiWorkflowPack",
"Data": {
"Success": true,
"Packages": ["./output/my-workflow.1.0.0.nupkg"]
}
}
Related
- uip api-workflow build — fast compile-only check before packing.
- uip api-workflow run — execute the workflow locally before packaging.