cicd-integrations
2025.10
true
CI/CD integrations user guide
- Overview
- UiPath CLI
- About UiPath CLI
- Downloading UiPath CLI
- Compatibility matrix
- Running UiPath CLI
- Managing NuGet feeds
- Trusting custom certificates
- Test Manager Support
- Packing projects into a package
- Signing project packages
- Analyzing a project
- Deploying a package to Orchestrator
- Running a job inside Orchestrator
- Testing a package or running a test set
- Testing multiple packages
- Input parameters JSON format
- Deploying assets to Orchestrator
- Deleting assets from Orchestrator
- Running tasks using JSON configuration
- Restoring automation dependencies
- Troubleshooting UiPath CLI
- Azure DevOps extension
- Jenkins plugin
Download any version of the UiPath CLI from the UiPath Official Public Feed.
Downloading UiPath CLI
You can download any version of the UiPath CLI from the following public feeds:
- UiPath Official Public Feed – primary distribution (includes Windows, Linux, Legacy variants).
- NuGet.org – public distribution for .NET tool consumption.
Install UiPath CLI using dotnet tool
If you prefer installing as a global .NET tool (Windows / Linux), use NuGet.org:
dotnet tool install -g UiPath.CLI.Windows # Windows
# or
dotnet tool install -g UiPath.CLI.Linux # Linux
# or
dotnet tool install -g UiPath.CLI.macOS # macOS
dotnet tool install -g UiPath.CLI.Windows # Windows
# or
dotnet tool install -g UiPath.CLI.Linux # Linux
# or
dotnet tool install -g UiPath.CLI.macOS # macOS
Specify an explicit version or if you need a pre-release revision (e.g. build-suffixed version):
dotnet tool install -g UiPath.CLI.Windows --version 25.10.6
dotnet tool install -g UiPath.CLI.Windows --version 25.10.6
To upgrade:
dotnet tool update -g UiPath.CLI.Windows
dotnet tool update -g UiPath.CLI.Windows
To use UiPath-Official source (when nuget.org might not be available):
dotnet tool install -g UiPath.CLI.Windows --source https://uipath.pkgs.visualstudio.com/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json
dotnet tool install -g UiPath.CLI.Windows --source https://uipath.pkgs.visualstudio.com/Public.Feeds/_packaging/UiPath-Official/nuget/v3/index.json
Downloading from UiPath Official feed
- Navigate to the feed and filter by keywords:
uipath.cli. - Select the package matching your platform:
UiPath.CLI.Windows— for Windows devicesUiPath.CLI.Linux— for LinuxUiPath.CLI.macOS— for macOSUiPath.CLI.Windows.Legacy— for Windows devices and for RPA projects of type Windows Legacy
- Go to the Versions tab and select the version you want to download (for 25.10 choose version 25.10.x).
- Download the
.nupkgfile. - Extract the
.nupkgfile to a local folder. The entrypoint location depends on the package:- UiPath.CLI.Windows / UiPath.CLI.Linux / UiPath.CLI.macOS:
tools/net8.0/any/uipcli.dll - UiPath.CLI.Windows.Legacy:
tools/uipcli.exeortools/uipcli.dll
- UiPath.CLI.Windows / UiPath.CLI.Linux / UiPath.CLI.macOS:
Runtime requirement
All UiPath CLI packages require .NET 8.
- On Windows: Install the .NET Desktop Runtime * (included with the SDK).
- On Linux: Ensure the .NET Runtime 8 is available.
- Compatible with UiPath Robot 2025.10 and newer.
Next steps
- Refer to Running UiPath CLI to learn about authentication, global flags, and usage.
- Continue with Managing NuGet Feeds to configure where your packages are published.