fix(ci): include bash in docker image build matrix#64
Merged
aron-muon merged 1 commit intoMay 19, 2026
Merged
Conversation
The bash language image was added in 3.5.0 but not registered in docker-publish.yml, so the 3.5.0 release built every other language image and skipped bash. Adds bash to the changes job outputs, the paths-filter, the per-language build job, and the retag job — same shape as every other language entry. Bootstrap note: the retag-bash job on the first release after this change will fail because no kubecoderun-bash image exists at the previous tag. After tagging, manually re-run "Docker Images Build" on the new tag with force_all=true to populate the missing image. Future releases will retag cleanly.
aron-muon
approved these changes
May 19, 2026
|
🎉 This PR is included in version 3.5.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
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.
Summary
Adds bash to
docker-publish.yml's build matrix. The bash language image landed in #63 / 3.5.0 but the workflow's hardcoded matrix wasn't updated, so the 3.5.0 release built every other language image and skippedkubecoderun-bash. This patches the gap.Fixes # (no existing issue — happy to file one if preferred)
Type of change
What changed
Four parallel insertions in
.github/workflows/docker-publish.yml, each mirroring the existingd(D-lang) entry:outputs.bashon thechangesjobbash:entry in thedorny/paths-filterfilter listbash:build job (callsdocker-build-reusable.ymlwithkubecoderun-bash/docker/bash.Dockerfile)retag-bash:job (callsdocker-retag-reusable.yml)Bootstrap caveat for the first release after merge
The next release's
retag-bashjob will fail becauseghcr.io/aron-muon/kubecoderun-bash:3.5.0doesn't exist for it to retag from. Workaround: after the tag is cut, manually re-run "Docker Images Build" on the new tag withforce_all: true— that bypasses the change-detection filter and runs every build job (includingbash), populating the missing image. Future releases retag cleanly because the image will exist at the previous tag.If you'd prefer to avoid the manual rerun, I can add a small change to
docker/bash.Dockerfilein this PR (e.g.,LANG=C.UTF-8/LC_ALL=C.UTF-8in the ENTRYPOINT — a real ergonomics fix for non-ASCII output, which also has the side effect of making paths-filter detect bash as changed in the next release). Let me know.How Has This Been Tested?
d:andretag-d:blocks)Checklist