Conversation
Builds a multi-arch (amd64, arm64) container image of the concord232 server and publishes it to ghcr.io/<owner>/concord232 on pushes to main and on v* tags. The workflow uses github.repository and GITHUB_TOKEN, so it works unchanged on any fork.
bharat
marked this pull request as ready for review
August 15, 2026 18:13
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.
Thanks for keeping this project moving. The active development here is what made me want to run your server build instead of the older PyPI release, and a ready-made container image was the missing piece, so here is the workflow I built for it.
What this does
Dockerfilethat installs the package from the checked-out source and starts the server. The server console script is not installed by packaging, so the entrypoint invokesconcord232.maindirectly.ghcr.io/<owner>/concord232on pushes tomainand onv*tags. It authenticates with the built-inGITHUB_TOKEN, so no secrets or account setup are needed on your side.Tags: the branch name on branch pushes, the version plus
latestonv*release tags, and the commit sha for pinning.Notes
github.repository, so it runs unchanged on any fork. The extradocker-imagebranch trigger is there so forks can build without touchingmain; happy to drop it, rename the image, or reshape the tags if you prefer.