grim/convey

Bumping versions for release
v0.13.1
2018-01-14, Gary Kramlich
837098fd33e6
Bumping versions for release
# this example shows how environment substitution works
environment:
- VERSION=1.2.3
tasks:
script:
type: docker/run
image: gliderlabs/alpine:edge
shell: /bin/ash
script:
- echo version ${VERSION}
- echo special ${SPECIAL}
- echo git commit ${GIT_COMMIT}
- echo hg commit ${HG_COMMIT}
environment:
- SPECIAL=true
plans:
default:
stages:
- tasks: [script]