-
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
Description
Support variables in task definitions.
Proposed Syntax
vars:
version: "1.0.0"
name: myapp
build:
cmd: cargo build --version \${{ vars.version }}
tag:
cmd: git tag \${{ vars.name }}-v\${{ vars.version }}Acceptance Criteria
- Define variables in
varssection - Interpolate in
cmdstrings - Support environment variable references
- Support nested variable references