/release

Repository used to generate release notes for Cilium releases

Primary LanguageGoApache License 2.0Apache-2.0

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.