Penguin-KarChunTKarChunT

Installation

Understand how to install Taskfile.

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 }}

On this page