Thomas Boerger c34efc152a
Use branch form value as fallback for last build
The current version of the Drone CLI is still using the branch form
value to filter the latest build information while the server is
listening only for the ref form value. With this fix we are falling back
to branch form value if it gets defined, formats it as a ref and hands
it to the further functions.
2019-04-26 11:05:28 +02:00
2019-04-13 01:58:26 -07:00
2019-04-25 00:33:16 +02:00
2019-04-16 11:05:46 +08:00
2019-03-13 14:47:47 -07:00
2019-02-27 23:07:13 -08:00
2019-04-25 00:23:25 +02:00
2019-04-14 17:06:16 -07:00
2019-04-22 15:24:00 -07:00
2019-02-27 23:07:13 -08:00
2019-04-25 18:07:28 -07:00
2019-04-16 11:05:46 +08:00
2019-04-22 16:14:17 -07:00
2019-02-19 15:56:41 -08:00
2016-05-26 11:08:48 -07:00
2019-04-16 09:27:15 +08:00
2019-02-20 10:34:26 -08:00
2019-02-27 23:07:13 -08:00
2019-02-19 15:56:41 -08:00
2019-03-13 14:50:24 -07:00
2019-03-22 17:07:09 -07:00
2019-02-19 19:55:28 -08:00

Drone is a Continuous Delivery system built on container technology. Drone uses a simple YAML configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.


Sample Pipeline Configuration:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

  frontend:
    image: node:6
    commands:
      - npm install
      - npm test

  publish:
    image: plugins/docker
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links:

Description