Installation Methods
- Snap
- Binary
- Install Script
- GitHub Action
sudo snap install task --classic
Download the binary from the 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
Use the
-b flag to override the installation directory.sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
Install Task in your CI pipeline using the arduino/setup-task action.
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}