Skip to content

Contributing: Releases

Basile Maret edited this page Jan 14, 2020 · 1 revision

Releases have a version in the form vMAJOR.MINOR (e.g v1.2).

The recommended way to create a release is to do it in the github interface. Click on the button Draft a new release, enter the version (e.g. v1.2) as tag and release title and the changelog as description.

Docker hub will automatically build the corresponding docker image (Note: it takes about half an hour until the images are built).

If you don't have access to github, it is also possible to create a release with git by creating a new tag with the version as a name:

git tag v1.2 -a -m "UV Server v1.2"

and push it to github:

git push --tags

Clone this wiki locally