Releasing
To release a new version of the storage submodule, you have to follow a few simple steps.
- Before releasing, make sure that reva has been updated to the desired version
- Check out master
git checkout master git pull origin master
- Create a new tag (preferably signed) and replace the version number accordingly. Prefix the tag with the submodule
storage/v
.git tag -s storage/vx.x.x -m "release vx.x.x" git push origin storage/vx.x.x
- Wait for CI and check that the GitHub release was published.
Congratulations, you just released the storage submodule!