mirror of
https://github.com/go-task/task.git
synced 2025-07-17 01:43:07 +02:00
22 lines
314 B
YAML
22 lines
314 B
YAML
version: '3'
|
|
|
|
silent: true
|
|
dotenv:
|
|
- 'global.env'
|
|
vars:
|
|
VAR: entrypoint-global-vars
|
|
env:
|
|
ENV: entrypoint-global-vars
|
|
|
|
tasks:
|
|
default:
|
|
dotenv:
|
|
- 'task.env'
|
|
vars:
|
|
VAR: entrypoint-task-vars
|
|
env:
|
|
ENV: entrypoint-task-vars
|
|
cmds:
|
|
- 'echo "{{.VAR}}"'
|
|
- 'echo "$ENV"'
|