From 2793034051b1355eb27dc8b2f92dfb2b629cc517 Mon Sep 17 00:00:00 2001 From: Dev Mukherjee Date: Sat, 29 Jun 2024 14:47:54 +1000 Subject: [PATCH] fix: unrequired dollar sign in taskfile --- Taskfile.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 57cc3e5..56fe411 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -10,8 +10,8 @@ tasks: prompt: "Before we build, is the version {{.PROJ_VERSION}} number up to date?" desc: tags the current commit cmds: - - git tag -a v${{.PROJ_VERSION}} -m "v{{.PROJ_VERSION}}" - - git push origin v${{.PROJ_VERSION}} + - git tag -a v{{.PROJ_VERSION}} -m "v{{.PROJ_VERSION}}" + - git push origin v{{.PROJ_VERSION}} build:image: prompt: Have you made sure the version number is up to date? desc: builds publishable python package