Skip to content

Commit 057061e

Browse files
docs: add note on dotnet tool
Add note on action not being supported for 2025.10 versions of UiPath
1 parent ae02137 commit 057061e

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ A GitHub Action for setting up the [UiPath CLI](https://docs.uipath.com/cicd-int
44

55
**Note on compatibility:** This action is compatible with both Windows and Ubuntu runners. UiPath offers two separate command line tools for the different operating systems, UiPath.CLI and UiPath.CLI.Windows installed on Ubuntu and Windows respectively. These have different capabilities in terms of project compatibility, noted in the [Compatiblity Matrix sections of this documentation page](https://docs.uipath.com/cicd-integrations/standalone/2024.10/user-guide/compatibility-matrix)
66

7+
> [!WARNING]
8+
> This action will not support use of UiPath CLI versions beyond 2025.10.x since UiPath now offers a simpler way of installing the CLI as a dotnet tool. See the code blocks below for examples on how to do this.
9+
10+
**Windows Runners**
11+
12+
```sh
13+
dotnet tool install --global UiPath.CLI.Windows --version 2025.10.5
14+
```
15+
16+
**Linux Runners**
17+
18+
```sh
19+
dotnet tool install --global UiPath.CLI.Linux --version 2025.10.5
20+
```
21+
722
## How to use
823

924
Copy one of the example usage snippets from the sections below into your GitHub Actions workflow.

0 commit comments

Comments
 (0)