No description
Find a file
2021-08-31 15:59:24 +02:00
.github (maint) v2.1.0 release prep 2021-08-24 15:37:33 +01:00
cmd/drone-server added more redis config env vars 2021-08-11 16:25:50 +02:00
core tech qa feedback, add test for update & fix issue with visiability & config 2021-08-27 10:36:33 +01:00
docker fixing a small typo in the compose readme. (#3077) 2021-05-04 10:59:47 +01:00
handler revert repo change to visilbity 2021-08-27 11:05:07 +01:00
livelog Rename files with camelCase name to use snake_case convention 2021-08-30 16:19:38 +02:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric Merge branch 'master' into master 2021-06-29 11:21:05 +02:00
mock added error as return value for pubsub.Subscribers() 2021-07-22 18:56:41 +02:00
operator Merge pull request #3012 from OhBonsai/breaksoon 2021-07-06 17:32:42 +02:00
plugin add support for yaml templates 2021-08-24 13:20:44 +01:00
pubsub Rename files with camelCase name to use snake_case convention 2021-08-30 16:19:38 +02:00
scheduler (feat) drone h/a: wrapped scheduler's signal func with redis mutex 2021-08-31 15:59:24 +02:00
scripts (feat) adding depends_on, image and detached fields to step 2021-06-22 13:57:04 +01:00
server Merge branch 'master' into master 2021-06-29 11:21:05 +02:00
service (feat) drone h/a: wrapped scheduler's signal func with redis mutex 2021-08-31 15:59:24 +02:00
session Fix various typos 2021-06-10 08:19:00 +05:45
store ability to cancel running builds if new commit is pushed 2021-08-26 17:21:00 +01:00
trigger Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
version (maint) v2.1.0 release prep 2021-08-24 15:37:33 +01:00
web squash and merge local branch 2019-02-19 15:56:41 -08:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml Pick up security fixes for golang 1.14.x 2021-05-16 09:03:54 +08:00
.github_changelog_generator release 2.0.5 2021-08-17 11:10:04 +01:00
.gitignore (feat) maximum open DB connections is configurable 2021-06-08 11:10:42 +01:00
BUILDING remove deprecated steps 2021-06-22 16:33:40 +01:00
BUILDING_OSS fix OSS build for v1.4.0. 2019-09-16 17:48:57 +09:00
CHANGELOG.md regen changelog 2021-08-24 16:08:12 +01:00
go.mod (feat) drone h/a: wrapped scheduler's signal func with redis mutex 2021-08-31 15:59:24 +02:00
go.sum (feat) drone h/a: wrapped scheduler's signal func with redis mutex 2021-08-31 15:59:24 +02:00
HISTORY.md release 2.0.5 2021-08-17 11:10:04 +01:00
LICENSE add rpc/v2 endpoint 2019-05-21 11:45:42 -07:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml Tech QA Feedback & add support for organization level templates 2021-05-28 16:59:00 +01: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:

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.

Before moving on make sure to update the version file version/version.go && version/version_test.go.

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.