Update release tag examples in CI/CD README

Changed the example git tag commands from v4.8.0 and v4.8.2 to v4.8.1 for consistency in the CI/CD documentation.
This commit is contained in:
Your Name
2025-09-09 14:07:36 +03:00
parent 1693b8fbed
commit 1ba920aa11
+6 -6
View File
@@ -126,14 +126,14 @@ To add new platform packages:
```bash ```bash
# For a new release # For a new release
git tag v4.8.0 git tag v4.8.1
git push origin v4.8.0 git push origin v4.8.1
# For a patch release # For a patch release
git tag v4.8.2 git tag v4.8.1
git push origin v4.8.2 git push origin v4.8.1
# To delete a tag (if needed) # To delete a tag (if needed)
git tag -d v4.8.0 git tag -d v4.8.1
git push origin :refs/tags/v4.8.0 git push origin :refs/tags/v4.8.1
``` ```