-
Notifications
You must be signed in to change notification settings - Fork 51
Release process
Oliver Soell edited this page Aug 17, 2021
·
11 revisions
- Bump version number in
main.go
(format: x.x.x), and inREADME.md
anddeploy/autoneg.yaml
(format: vx.x.x). - If there are changes in the generated manifests, run
VERSION=vx.x.x make autoneg-manifests
, and replace the Google header indeploy/autoneg.yaml
- Commit locally
- Create local release tag (
git tag vx.x.x -m "Version vx.x.x"
) - Push release tag (
git push origin vx.x.x
) which will build and push a release image - Make github release, with version vx.x.x pointing to the pushed tag (vx.x.x)
- Bump version in main.go to x.x.(x+1)-dev
- Commit to master