File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ # Releasing
2+
3+ 1 . Update the ` version ` in [ ` gradle.properties ` ] ( ./gradle.properties ) to the release version.
4+
5+ 2 . Commit changes.
6+
7+ ``` shell
8+ $ git commit -am " Prepare version X.Y.X"
9+ ```
10+
11+ 3 . Tag the release.
12+
13+ ``` shell
14+ $ git tag -am " Version X.Y.Z" X.Y.Z
15+ ```
16+
17+ 4 . Push the tag.
18+
19+ ``` shell
20+ $ git push --tags
21+ ```
22+
23+ 5 . Update the ` version ` in [ ` gradle.properties ` ] ( ./gradle.properties ) to the next ` SNAPSHOT ` version.
24+
25+ 6 . Commit changes.
26+
27+ ``` shell
28+ $ git commit -am " Prepare next development version"
29+ ```
30+
31+ 7 . Push changes.
32+
33+ ``` shell
34+ $ git push && git push --tags
35+ ```
36+
37+ This will trigger a GitHub Action to publish the library to Maven Central.
You can’t perform that action at this time.
0 commit comments