File tree 1 file changed +27
-1
lines changed
1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,33 @@ mvn release:clean
59
59
mvn --batch-mode -Dtag=wanaku-${CURRENT_DEVELOPMENT_VERSION} release:prepare -DreleaseVersion=${CURRENT_DEVELOPMENT_VERSION} -DdevelopmentVersion=${NEXT_DEVELOPMENT_VERSION} -SNAPSHOT
60
60
```
61
61
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:
63
89
64
90
```
65
91
mvn -Pdist release:perform
You can’t perform that action at this time.
0 commit comments