Publishing and Releases¶
Local Publication¶
Use this to inspect locally published metadata and consume a candidate from a separate project.
Release Branches¶
Accepted branch names:
release/X.Y.Zrelease/X.Y.Z-rcNNhotfix/X.Y.Zhotfix/X.Y.Z-rcNN
The version segment must be a valid semantic version and RC suffixes use two digits.
Release Preparation¶
- Run the
project-docsskill in Audit mode. - Review the factual report and approve required KDoc changes.
- Run Sync mode and all documentation validation.
- Run
ciLint,ciBuild,ciTest, andciCoverage. - Validate samples separately and record known external blockers.
- Confirm every Git tag has a changelog page and the index is newest first.
- Open the release or hotfix pull request into
master.
Tag and Publication Flow¶
flowchart LR
Branch[release or hotfix branch] --> PR[Pull request]
PR --> Validate[PR validates branch version]
Validate --> Merge[Merge into master]
Merge --> Tag[Workflow derives and creates tag]
Tag --> Publish[Maven Central and release workflows]
Publish --> Docs[Latest docs from master]
Pull-request CI validates the branch pattern and version before merge. After a
matching branch is merged into master, automation reads the merged branch
name, validates the tag shape and parent commit, creates the tag, and lets the
tag-triggered release workflow publish artifacts.
Do not create a replacement tag manually when automation fails. Inspect the workflow and repository state first to avoid publishing from the wrong commit.