Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 407 Bytes

RELEASING.md

File metadata and controls

24 lines (16 loc) · 407 Bytes

Release Process

  1. Update CHANGELOG.md with version, date, and summary.

  2. Commit changes

    git commit -am "Prepare version X.Y.Z"
    
  3. Create annotated tag

    git tag -a X.Y.Z -m 'Version X.Y.Z'
    
  4. Push commit and tag

    git push && git push --tags
    

    CI will pick it up, build, and push to Docker Hub automatically.