Creating a new release doesn't create any artifacts.
Checkout the branch from which you want to release. For a major or minor release,
you will need to create a new release-vX.Y
branch based on the target Calico version.
Make sure the branch is in a good state, e.g. Update any pins in glide.yaml, create PR, ensure tests pass and merge.
You should have no local changes and tests should be passing.
-
Choose a version e.g.
v1.0.1
-
Create the release. This will generate release notes, a tag, build the code.
make VERSION=v1.0.1 release
-
Publish the release.
make VERSION=v1.0.1 release-publish
-
Publish the release on GitHub by following the link printed to screen.
- Copy the tag description, press edit, and paste it into the release body.
- Remove or clean up any messy commits - e.g. libcalico-go updates.
- Title the release the same as the tag - e.g.
v1.0.1
- Press "Publish release"
-
Choose a version e.g.
v1.1.0
-
Create the release. This will generate release notes, a tag, build the code.
make VERSION=v1.1.0 PREVIOUS_RELEASE=v1.0.0 release
-
Publish the release.
make VERSION=v1.1.0 release-publish
-
Publish the release on GitHub by following the link printed to screen.
- Copy the tag description, press edit, and paste it into the release body.
- Remove or clean up any messy commits - e.g. libcalico-go updates.
- Title the release the same as the tag - e.g.
v1.1.0
- Press "Publish release"