mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
17 lines
276 B
YAML
17 lines
276 B
YAML
|
version: 3
|
||
|
|
||
|
tasks:
|
||
|
wildcard-*:
|
||
|
cmds:
|
||
|
- echo "Hello {{index .MATCH 0}}"
|
||
|
|
||
|
'*-wildcard-*':
|
||
|
cmds:
|
||
|
- echo "Hello {{index .MATCH 0}} {{index .MATCH 1}}"
|
||
|
|
||
|
start-*:
|
||
|
vars:
|
||
|
SERVICE: "{{index .MATCH 0}}"
|
||
|
cmds:
|
||
|
- echo "Starting {{.SERVICE}}"
|