Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 348 Bytes

RELEASE.md

File metadata and controls

14 lines (13 loc) · 348 Bytes

How to release a new version

  1. Update CHANGELOG.md
  • Open PR and get it merged
  1. Create a new tag that follows semantic versioning:
    $ tag=v0.1.0
    $ git tag -s "${tag}" -m "${tag}"
    $ git push origin "${tag}"
  2. Publish the updated Docker image
    $ IMAGE_TAG="${tag}" make publish-images