ci: migration to semantic-release#2209
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR migrates the repository’s release automation to semantic-release, separating build and release concerns by moving Docker publishing and GitHub release creation into a dedicated workflow.
Changes:
- Add
semantic-releaseconfiguration via.releaserc.json(main branch,v${version}tag format, GitHub releases). - Introduce a new
Releaseworkflow that runs semantic-release onmainpushes and publishes versioned +latestDocker images to GHCR when a new release is published. - Simplify the existing
build-publishworkflow to build-only (removing tag-triggered publish and release creation logic).
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.releaserc.json |
Defines semantic-release branch/tag conventions and plugins. |
.github/workflows/release.yml |
Adds semantic-release-based release job and a Docker image publish matrix. |
.github/workflows/build-publish.yaml |
Removes tag-based publish/release steps, leaving only builds on PRs and main. |
dragosp1011
approved these changes
Jun 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
As part of our effort to mature the CI of this repository, this PR proposes the full migration to formalised
semantic-release.This PR reworks the release mechanisms to be much more simple and automated. Developers simply need to trigger the "Create Release" workflow to trigger the creation of a new release. Version number will be calculated using conventional commits.