1
0
mirror of https://github.com/go-task/task.git synced 2025-01-04 03:48:02 +02:00
task/testdata/params/Taskfile.yml

22 lines
567 B
YAML
Raw Normal View History

2017-07-02 20:30:50 +02:00
default:
vars:
SPANISH: ¡Holla mundo!
2017-07-02 20:30:50 +02:00
deps:
- task: write-file
2017-07-06 01:07:24 +02:00
vars: {CONTENT: Dependence1, FILE: dep1.txt}
2017-07-02 20:30:50 +02:00
- task: write-file
2017-07-06 01:07:24 +02:00
vars: {CONTENT: Dependence2, FILE: dep2.txt}
2017-07-02 20:30:50 +02:00
cmds:
- task: write-file
2017-07-06 01:07:24 +02:00
vars: {CONTENT: Hello, FILE: hello.txt}
2017-07-02 20:30:50 +02:00
- task: write-file
2017-07-06 01:12:40 +02:00
vars: {CONTENT: "$echo 'World'", FILE: world.txt}
2017-07-02 20:30:50 +02:00
- task: write-file
2017-07-06 01:07:24 +02:00
vars: {CONTENT: "!", FILE: exclamation.txt}
- task: write-file
vars: {CONTENT: "{{.SPANISH}}", FILE: spanish.txt}
2017-07-02 20:30:50 +02:00
write-file:
cmds:
- echo {{.CONTENT}} > {{.FILE}}