grim/convey

closing merged branch
hostnames
2017-10-13, Gary Kramlich
33eae19fcbbe
closing merged branch
# this example shows how environment substitution works
environment:
- VERSION=1.2.3
tasks:
script:
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]