grim/convey

Bump the version for release
v0.14.0-alpha3
2018-02-20, Gary Kramlich
166a6d1979fa
Bump the version for release
# This example creates two tasks and puts each into their own plan. Those
# plans are then grouped together into a meta-plan that is set as the default
# plan to run.
default-plan: everything
tasks:
one:
type: docker/run
image: gliderlabs/alpine:edge
command: echo one
two:
type: docker/run
image: gliderlabs/alpine:edge
command: echo two
plans:
plan1:
stages:
- tasks:
- one
plan2:
stages:
- tasks:
- two
meta-plans:
default:
plans:
- plan1
- plan2