Open StefMa opened 3 months ago
Also document how to publish to maven local for (PR) testing...
This is what I wrote so far:
## 📦 How to Release
### 1. Check out the `main` Branch
- Make sure you're on the `main` branch and have the latest changes:
```bash
git checkout main
git pull origin main
library/build.gradle.kts
Remove -SNAPSHOT
from the version in library/build.gradle.kts
.
Commit this change:
git commit -m "Prepare next release" .
Tag the release version and push it:
git tag x.y.z
git push origin x.y.z
release.yml
) to release your library to a Sonatype staging repository. 📤Increment the minor version in library/build.gradle.kts
and add -SNAPSHOT
to mark it as a development version.
Commit this change:
git commit -m "Next development version" .
Document