From 3fd8dc2a491e16e6e802b5c9746702d3b62ca529 Mon Sep 17 00:00:00 2001 From: k3nny Date: Sun, 12 Jul 2026 14:30:52 +0200 Subject: [PATCH] build: :heavy_plus_sign: add install task command that copies the build binary into /usr/local/bin --- Taskfile.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Taskfile.yml b/Taskfile.yml index 30de154..3ae23a6 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -24,6 +24,12 @@ tasks: generates: - "{{.BIN}}" + install: + desc: installs the binary in /usr/local/bin/ + cmds: + - task: build + - sudo cp ./bin/releaser /usr/local/bin/releaser + run: desc: Build and run releaser (pass args with -- e.g. task run -- --dry-run) deps: [build]