Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 732 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 732 Bytes

Cilium release

This repository will generate changelog for cilium releases

$ make release
$ export GITHUB_TOKEN=<token_with_repo_public_access>

For a x.y.z release, a.k.a patch release

$ ./release --base <base-commit>  \
            --head <head-commit>

Where:

  • <base-commit> is x.y.z-1
  • <head-commit> should be the last commit available for the x.y branch.

For a x.y.0 release, a.k.a minor release

$ ./release --base <base-commit>  \
            --head <head-commit> \
            --last-stable x.y-1

Where:

  • <base-commit> can be found with git merge-base origin/vx.y-1 origin/vx.y
  • <head-commit> should be the last commit available for the x.y branch.