pidgin/nest

41f5bbb6de35
Parents a7af424b56ba
Children 006ec5869bfc
Add a simple convey.yml for building/publishing
  • +24 -0
    convey.yml
  • --- /dev/null Thu Jan 01 00:00:00 1970 +0000
    +++ b/convey.yml Wed Jan 16 23:48:26 2019 -0600
    @@ -0,0 +1,24 @@
    +environment:
    + - REPO=pidgin/nest
    + - TAG=latest
    +tasks:
    + import:
    + type: docker/import
    + files: .:.
    + build:
    + type: docker/build
    + dockerfile: Dockerfile
    + tag: ${REPO}:${TAG}
    + files: .
    + push:
    + type: docker/push
    + image: ${REPO}:${TAG}
    +
    +plans:
    + default:
    + stages:
    + - tasks: [import, build]
    + publish:
    + stages:
    + - tasks: [push]
    +