Skip to content

Commit

Permalink
docs(releasing): Fix tag format
Browse files Browse the repository at this point in the history
  • Loading branch information
osipxd committed Jul 31, 2024
1 parent 0c0e1ca commit 0e2d750
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
6. Create a release tag on the `main` branch:
```bash
# Push the release tag
git tag [version]
git push origin [version]
git tag v[version]
git push origin v[version]
```
Release tag push triggers a release workflow on the CI which uploads release artifacts to Maven Central and creates a GitHub release.

Expand All @@ -40,5 +40,6 @@

## Version Update

1. Update a version in `gradle.properties` and `README.md`
1. Update a version in `gradle.properties`
2. Update a version used in samples in `build.gradle.kts`
3. It the version is not a snapshot, update the version in `README.md`

0 comments on commit 0e2d750

Please sign in to comment.