Skip to content

Commit ff5b940

Browse files
author
mlobofeedzai
authored
PULSEDEV-00000 feedzai-openml: Include release process in README
Copied from https://github.com/feedzai/feedzai-openml-java/
1 parent 621b2dc commit ff5b940

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,18 @@ After providing all the necessary information (your new provider groupId, artifa
6363

6464
This project makes use of the [jgitver Maven plugin](https://github.com/jgitver/jgitver). When using Intellij IDEA you
6565
must configure the project to skip the plugin altogether. [See the related issue](https://github.com/jgitver/jgitver-maven-plugin/wiki/Intellij-IDEA-configuration).
66+
67+
## Releasing
68+
69+
If the hotfix branch is ready, you needed to create an annotated tag pointing to the hotfix branch head (example below for releasing version 1.2.29):
70+
71+
```bash
72+
# Ensure the tag is made on the udpated branch
73+
git fetch -a
74+
git checkout origin/hf-1.2.X
75+
git tag -a 1.2.29
76+
# Your EDITOR will open. Write a good message and save as it is used on Github as a release message
77+
git push origin 1.2.29
78+
```
79+
80+
Then you need to [create a new release](https://github.com/feedzai/feedzai-openml/releases/new) with this tag and the description according [to the previous ones](https://github.com/feedzai/feedzai-openml/releases).

0 commit comments

Comments
 (0)