Skip to Content
Last repository update 9/10/2025 🎉
DocsTaskfileInstallation

Installation

Snap

sudo snap install task --classic

Binary

Download the binary from release page  and add it to your PATH.

wget https://github.com/go-task/task/releases/download/v3.43.3/task_linux_amd64.deb sudo dpkg -i task_linux_amd64.deb

Script

Override the installation directory with -b flag.

sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin

GitHub Action

You can understand more about this action  on GitHub.

- name: Install Task uses: arduino/setup-task@v2 with: version: 3.x repo-token: ${{ secrets.GITHUB_TOKEN }}
Last updated on