Skip to content

Commit e6f006c

Browse files
committed
Updated the release guide
1 parent 5a7943c commit e6f006c

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

docs/release-guide.md

+27-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,33 @@ mvn release:clean
5959
mvn --batch-mode -Dtag=wanaku-${CURRENT_DEVELOPMENT_VERSION} release:prepare -DreleaseVersion=${CURRENT_DEVELOPMENT_VERSION} -DdevelopmentVersion=${NEXT_DEVELOPMENT_VERSION}-SNAPSHOT
6060
```
6161

62-
At this point, build the code to regenerate the UI files with the openAPI specification.
62+
Commit the auto-generated UI files:
63+
64+
```shell
65+
mvn -PcommitFiles scm:checkin
66+
```
67+
68+
**NOTE**: do not perform any other manual commit nor push the code. If necessary, append to the UI commit.
69+
70+
Erase the tag created incorrectly by Maven
71+
72+
```shell
73+
git tag -d wanaku-${CURRENT_DEVELOPMENT_VERSION}
74+
```
75+
76+
Recreate the release tag by marking tagging at exactly two commits before HEAD (i.: ignoring the version bumps from maven)
77+
78+
```shell
79+
git tag wanaku-${CURRENT_DEVELOPMENT_VERSION} HEAD~2
80+
```
81+
82+
Push the code to the repository:
83+
84+
```shell
85+
git push upstream wanaku-${CURRENT_DEVELOPMENT_VERSION}
86+
```
87+
88+
Now continue with the release:
6389

6490
```
6591
mvn -Pdist release:perform

0 commit comments

Comments
 (0)