From 8ddc2e4b882ff49f97d2795ce3f3034d27a761f9 Mon Sep 17 00:00:00 2001 From: "D. Bohdan" Date: Fri, 13 Dec 2024 08:16:25 +0000 Subject: [PATCH] build(task/release): automatically set `VERSION` --- Taskfile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index a263699..2f8410c 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -74,8 +74,10 @@ tasks: release: desc: 'Prepare a release' + deps: + - build_binaries cmds: - - go run script/release.go + - VERSION=$(./memsparkline --version) go run script/release.go test: desc: 'Run tests'