We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example situation:
By default, the global variable default should be used. If a task defines / attempts to override the default, it is currently not utilized.
version: '3' vars: MY_VAR: '{{.MY_VAR | default 123}}' tasks: MY_TASK: vars: MY_VAR: '{{.MY_VAR | default 456}}' cmds: - echo "MY_VAR = {{.MY_VAR}}"
Current output:
> task MY_TASK MY_VAR = 123 > task MY_TASK MY_VAR=789 MY_VAR = 789
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
Example situation:
By default, the global variable default should be used. If a task defines / attempts to override the default, it is currently not utilized.
Current output:
The text was updated successfully, but these errors were encountered: