feat(yaml): inject bash for taskfiles (#7804)

This commit is contained in:
Anthony Fiddes 2025-04-06 17:09:27 +00:00 committed by GitHub
parent e5c8398e44
commit 205faba176
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 4 deletions

View file

@ -0,0 +1,15 @@
# https://taskfile.dev
version: '3'
vars:
GREETING:
sh: echo "Hello, World!"
# ^ @bash
tasks:
default:
cmds:
- echo "{{.GREETING}}"
# ^ @bash
silent: true