mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-26 13:29:11 +01:00
761 B
761 B
How to Release this Repo
- Determine the current release version with
git tag -l. It should look something likevX.Y.Z. We'll call the current version$CVand the new version$NV. - On master, run
git log $CV..to list all the changes since the last release. - Edit
CHANGES.mdto include a summary of the changes. - Mail the CL containing the
CHANGES.mdchanges. When the CL is approved, submit it. - Without submitting any other CLs:
a. Switch to master.
b.
git pullc. Tag the repo with the next version:git tag $NV. d. Push the tag:git push origin $NV. - Update the releases page with the new release, copying the contents of the CHANGES.md.