Skip to content
Snippets Groups Projects
Verified Commit 27841fbd authored by Gael Yvert's avatar Gael Yvert
Browse files

more dev doc

parent 13ab2310
No related branches found
No related tags found
No related merge requests found
......@@ -139,6 +139,9 @@ Steps when making a beta-release:
- commit your changes
- merge to the master branch. For simplicity/clarity of this project, we don't want too many branches and things will be much simpler if all releases are on the master branch.
- Make a tag with a new version in format `vX.X.X-beta`
```sh
git tag -a vX.X.X-beta -m "version X.X.X-beta" # change with tag name of the new version
```
- Produce the release on Gitlab server. Indicate in **comments that it is a beta release**, and link it to milestones and any relevant information.
- Update branch beta-release
```sh
......@@ -158,7 +161,15 @@ When releasing a stable-release:
```
- commit your changes
- merge to the master branch.
- Make a tag with a new version in format `vZ.Z.Z`
- Make a tag with a new version in format `vZ.Z.Z` # change with tag name of the new version
```sh
git tag -a vZ.Z.Z -m "version Z.Z.Z"
```
- Produce the release on Gitlab server. Indicate in **comments that it is a beta release**, and link it to milestones and any relevant information.
- Update branch beta-release
```sh
git checkout latest-beta
git
- Produce the release on Gitlab server. Indicate in **comments that it is a stable release**, and link it to milestones and any relevant information.
- Update branch latest-release:
```sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment