- Create a pr against development branch to update the tfchain-client with the latest commit (make sure it's merged).
- Export
$VERSION
env variable to the version you want - Run
make release-rmb
- Update zos with the latest version of the rmb.
- Create a pr against development branch to update zos with the latest commit (make sure it's merged).
- Update the helm app version for the grid proxy as described here
- Update the helm app version for the relay cache warmer here
- Run
make release
After all the release workflows are finished you should create an issue on https://github.com/threefoldtech/tf_operations with type of Update Request
to use the new images/binaries.
Make sure to specify the new release version in the issue name and to include any changes in the usual release(like new configuration, etc,..)
let's say the next tag is v1.0.0
, release will be:
- Create a tag
git tag -a grid-client/v1.0.0 -m "release grid-client/v1.0.0"
- Push the tag
git push origin grid-client/v1.0.0
- Create a tag
git tag -a grid-proxy/v1.0.0 -m "release grid-proxy/v1.0.0"
- Push the tag
git push origin grid-proxy/v1.0.0
For Further info check Grid-proxy release docs.
- Create a tag
git tag -a rmb-sdk-go/v1.0.0 -m "release rmb-sdk-go/v1.0.0"
- Push the tag
git push origin rmb-sdk-go/v1.0.0
- Check
goreleaser check
- Create a tag
git tag -a v1.0.0 -m "release v1.0.0"
- Push the tag
git push origin v1.0.0
- the release workflow will release the tag automatically
The following convention should be followed for tagging in this project:
Release Tags: For release names and GitHub tags, the tag format should be prefixed with v0.0.0. For example, a release tag could be v1.2.3, where 1.2.3 represents the version number of the release.
Docker Image Tags: For generated Docker images, such as in the tfgridproxy component, the tag format should only include the tag number without the v prefix. For example, a Docker image tag could be 0.0.0, representing the specific version of the image.
Following this convention will help maintain consistency and clarity in tagging across all the grid components.