# README
runner-go
A collection of helper packages to extend Drone with customer runners.
Release procedure
Run the changelog generator.
docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p runner-go -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 runner-go --token <secret token> --future-release v1.0.0
Create your pull request for the release. Get it merged then tag the release.
# Packages
Package client provides a client for using the runner API.
Package clone provides utilities for cloning commits.
No description provided by the author
Package environ provides utilities for generating environment variables for a build pipeline.
Package handler provides HTTP handlers that expose pipeline state and status.
No description provided by the author
Package livelog provides a Writer that collects pipeline output and streams to the central server.
Package logger defines interfaces that logger drivers implement to log messages.
Package manifest provides definitions for the Yaml schema.
Package pipeline defines interfaces for managing and reporting pipeline state.
No description provided by the author
Package registry provides registry credentials used to pull private images from a registry.
Package secret provides secrets to a pipeline.
Package server provides an HTTP server with support for TLS and graceful shutdown.
No description provided by the author