Draft
Require explicit versioned deploys and propagate Succession version tags to all container registries#167
Conversation
Co-authored-by: davorg <24642+davorg@users.noreply.github.com>
Co-authored-by: davorg <24642+davorg@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Use version number to tag Docker images for deployment
Require explicit versioned deploys and propagate Succession version tags to all container registries
Aug 18, 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.
Deployment currently derives image selection from commit SHA, while release versioning is already declared in
Succession.pm. This change makes deployment explicitly version-driven and aligns image tagging/publishing across Artifact Registry and Docker Hub.Deploy workflow now requires a version input
.github/workflows/build_deploy.ymladds requiredworkflow_dispatch.inputs.version.bin/deploy_container.bin/deploy_containernow deploys by version tag (not SHA)VERSIONenv var), normalizes optionalvprefix, and validates numeric-dot format.v<version>exists in Artifact Registry before deploy....:<vversion>and setsSUCC_VERSIONfrom the supplied version.bin/build_containernow also tags/pushes Docker Hub with release versionv<version>(DOCKERHUB_NAMESPACEdefault:davorg).Build workflow now authenticates to Docker Hub
.github/workflows/build_container.ymladdsdocker/login-action@v3using Docker Hub credentials from secrets.Focused deploy-script coverage
Succession/t/022_deploy_container.tto cover::v<version>andSUCC_VERSION=<version>.