Publishing & Releases¶
How S-CORE modules are published, versioned, and distributed.
Module Publication Flow¶
The release pipeline follows this sequence:
- A GitHub Release is created in the module repository with a semantic version tag
- The release is imported into the registry (bazel_registry)
- Consumers resolve the new version through their
MODULE.bazeldependency declarations
Creating a Release¶
Create a GitHub Release in the module repository:
- Tag the commit with a semantic version (e.g.,
v1.2.0) - Create a GitHub Release from the tag
- The release artifacts are stored as GitHub Release assets
Adding to the Registry¶
After creating a release, add it to the shared Bazel registry. Follow the instructions in the registry README.
Discovery¶
Published modules and their available versions are browsable at the Registry UI.
Versioning¶
S-CORE modules follow semantic versioning, aligned with Git tags. The version in MODULE.bazel must match the Git tag used for the GitHub Release.
Container Images¶
The devcontainer image is published to the GitHub Container Registry:
ghcr.io/eclipse-score/devcontainer
This image is used by both local development (via .devcontainer/devcontainer.json) and CI workflows.