What changed, and why it matters
This commit only adds documentation to the README explaining how maintainers should create release tags to trigger automatic publishing of the Python, JavaScript, and Rust client packages. No code, configuration, or security behavior was changed.
No security action needed; this is a documentation-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds a ‘Deployment’ section to README.md with regex patterns for Git tags (pyclient-x.x.x, jsclient-x.x.x, rsclient-x.x.x) that presumably drive CI/CD publishing workflows. The change is purely informational and does not modify any source code, build scripts, CI definitions, or package manifests.
Changed components
README.mdInspect captured patch +10 / −0
diff --git a/README.md b/README.md
index 6e55e13..088e359 100644
--- a/README.md
+++ b/README.md
@@ -152,3 +152,13 @@ If you need to go deeper into the rabbit hole 🐇🕳️, refer to the followin
## Tests
See the [tests](tests) folder for documentation on the functional and end-to-end test suites of the bitcoin app, and the [unit-tests](unit-tests) folder for the C unit tests.
+
+## Deployment
+
+To have either the python client, javascript client or rust client published to their respective package registries upon a new release, please create a tag with their respective regex :
+
+```bash
+pyclient-\d+\.\d+\.\d+
+jsclient-\d+\.\d+\.\d+
+rsclient-\d+\.\d+\.\d+
+```
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.