# https://taskfile.dev version: '3' vars: GREETING: Hello, World! tasks: build: desc: Build the project cmds: - echo "{{.GREETING}}" silent: true