Fix docker image lowercasing#335
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions release workflow to ensure GHCR image names use a lowercased repository owner, avoiding failures when the owner contains uppercase characters.
Changes:
- Add a per-job step to normalize
github.repository_ownerto lowercase and expose it via step outputs. - Update docker metadata/image references and multi-arch manifest creation to use the normalized owner.
- Update digest inspection targets to match the new normalized image paths.
Comments suppressed due to low confidence (1)
.github/workflows/release.yml:300
- These image references are now hardcoded to
.../${{ steps.owner.outputs.owner }}/hums-serverinstead of using the existing env vars (SERVER_IMAGE_NAME/MIGRATE_IMAGE_NAME/WEB_IMAGE_NAME), and those env vars appear to be unused after this change. This increases duplication and makes future renames harder. Consider either removing the unused env vars or setting normalized image name env vars (via $GITHUB_ENV) and using them consistently throughout the workflow (build, manifest, and any documentation steps).
images: ${{ env.REGISTRY }}/${{ steps.owner.outputs.owner }}/hums-server
tags: |
type=raw,value=${{ needs.create-release.outputs.tag }}-${{ matrix.arch }},priority=900
type=raw,value=v${{ needs.create-release.outputs.version }}-${{ matrix.arch }},priority=850
type=raw,value=latest-${{ matrix.arch }},priority=600
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Merged
SunkenSplash
added a commit
that referenced
this pull request
May 4, 2026
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
See title.