grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version for release
# This plan includes a task that extends another task with
# a different, higher precedence environment. Running this
# plan should print foo, bar, then baz.
tasks:
foo:
type: docker/run
image: gliderlabs/alpine:edge
command: echo "${MESSAGE}"
environment:
- MESSAGE=foo
bar:
type: convey/extend
task: foo
environment:
- MESSAGE=bar
baz:
type: convey/extend
task: bar
environment:
- MESSAGE=baz
plans:
default:
stages:
- tasks: [foo, bar, baz]