grim/convey

Bump the version
v0.14.0-alpha4
2018-02-20, Gary Kramlich
89afa53fab1b
Bump the version
tasks:
# define a task to import your files to upload into the workspace
import:
type: docker/import
files:
- .
# define the upload task itself. Be sure to set your repo and auth user.
# Never set BITBUCKET_AUTH_PASSWORD in your convey files that are going into
# version control!
upload:
type: docker/run
image: convey/bitbucket-upload
environment:
- BITBUCKET_REPO=rw_grim/bb-testing
- BITBUCKET_AUTH_USER=rw_grim
- BITBUCKET_AUTH_PASSWORD
# set what files you want to upload
- BITBUCKET_FILES=gplugin-convey.png
plans:
default:
stages:
- tasks: [import, upload]
# force sequential build to avoid defining multiple stages
concurrent: false