Installation
Azure DevOps
-
Visit the Tuyen CLI Task page on Azure Marketplace.
-
Click Get it free and add it to your organization.
-
Include the Tuyen CLI task in your pipeline:
steps: - task: TuyenCli@1
-
Verify the installation by running:
steps: - script: tuyen -h
GitHub
-
Add the Tuyen CLI action to your workflow:
steps: - uses: tuyen-at-work/tuyen-cli-action@master
-
Verify the installation by running:
steps: - run: tuyen -h
Local Installation
MacOS and Linux
Linux users — The
unzip
package is required to install Tuyen CLI. Usesudo apt install unzip
to installunzip
package. Kernel version 5.6 or higher is strongly recommended, but the minimum is 5.1. Useuname -r
to check Kernel version.
curl -fsSL https://cli.tuyen.blog/install.sh | bash # for macOS, Linux, and WSL
Windows
To install, paste this into a terminal:
powershell -c "irm cli.tuyen.blog/install.ps1 | iex"