feat: introduce Taskfile automation for build and deployment

This commit is contained in:
Prad N
2025-03-05 19:22:04 -05:00
parent fcc915a115
commit 77bbf6bba7
13 changed files with 427 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
version: '3'
tasks:
info-*:
vars:
TEXT: '{{index .MATCH 0}}'
cmds:
- gum log -l info {{.TEXT}}
warn-*:
vars:
TEXT: '{{index .MATCH 0}}'
cmds:
- gum log -l warn {{.TEXT}}
error-*:
vars:
TEXT: '{{index .MATCH 0}}'
cmds:
- gum log -l error {{.TEXT}}
debug-*:
vars:
TEXT: '{{index .MATCH 0}}'
cmds:
- gum log -l debug {{.TEXT}}