grim/convey

Bumping versions for release
v0.13.1
2018-01-14, Gary Kramlich
837098fd33e6
Bumping versions for release
tasks:
# define our script task
script:
type: docker/run
image: gliderlabs/alpine:edge
# if you need to override the default shell of /bin/sh you can use the
# shell attribute
shell: /bin/ash
# then just define your script as a list of strings
script:
- echo "hello from alpine"
- uptime
plans:
default:
stages:
- tasks: [script]