No description
Find a file
2021-08-17 11:10:04 +01:00
.github release 2.0.5 2021-08-17 11:10:04 +01:00
cmd/drone-server added more redis config env vars 2021-08-11 16:25:50 +02:00
core added error as return value for pubsub.Subscribers() 2021-07-22 18:56:41 +02:00
docker
handler added error as return value for pubsub.Subscribers() 2021-07-22 18:56:41 +02:00
livelog h/a stuff is !oss, simplified redis pubsub subscribe 2021-08-09 13:01:50 +02:00
logger
metric
mock added error as return value for pubsub.Subscribers() 2021-07-22 18:56:41 +02:00
operator
plugin fix issue where map changes order therefore test randomly fails 2021-08-03 10:51:39 +01:00
pubsub h/a stuff is !oss, simplified redis pubsub subscribe 2021-08-09 13:01:50 +02:00
scheduler h/a stuff is !oss, simplified redis pubsub subscribe 2021-08-09 13:01:50 +02:00
scripts
server
service added more redis config env vars 2021-08-11 16:25:50 +02:00
session
store
trigger
version
web
.dockerignore
.drone.yml
.github_changelog_generator release 2.0.5 2021-08-17 11:10:04 +01:00
.gitignore
BUILDING
BUILDING_OSS
CHANGELOG.md release 2.0.5 2021-08-17 11:10:04 +01:00
go.mod bump ui version 2021-08-12 17:02:06 +01:00
go.sum bump ui version 2021-08-12 17:02:06 +01:00
HISTORY.md release 2.0.5 2021-08-17 11:10:04 +01:00
LICENSE
NOTICE
Taskfile.yml

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:

name: default

kind: pipeline
type: docker

steps:
- name: backend
  image: golang
  commands:
    - go get
    - go build
    - go test

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

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

- name: notify
  image: plugins/slack
  settings:
    channel: developers
    username: drone

Documentation and Other Links:

Please note the official Docker images run the Drone Enterprise distribution. If you would like to run the Community Edition you can build from source by following the instructions in BUILDING_OSS.

Release procedure

Run the changelog generator.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p drone -t <secret github token>

You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.

Next we tag the PR's with the fixes or enhancements labels. If the PR does not fufil the requirements, do not add a label.

Run the changelog generator again with the future version according to semver.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p drone -t <secret token> --future-release v1.0.0

Create your pull request for the release. Get it merged then tag the release.