mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
08265ed1d7
Closes #453 Closes #434 Ref #433 Co-authored-by: Andrey Nering <andrey@nering.com.br>
14 lines
195 B
YAML
14 lines
195 B
YAML
version: "3"
|
|
|
|
vars:
|
|
PART_1: test
|
|
PART_2: ing
|
|
LOCAL_VAR: "{{.PART_1}}{{.PART_2}}"
|
|
|
|
dotenv: [".env.{{.LOCAL_VAR}}"]
|
|
|
|
tasks:
|
|
default:
|
|
cmds:
|
|
- echo "VAR='$VAR_IN_DOTENV'" > var.txt
|