You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): lowercase image name in push-by-digest and merge paths
[github.repository] preserves owner casing — for this repo it's
"Builder106/ocaml_limit", which Docker rejects as a repository
name. The previous single-job workflow worked around this implicitly
because [docker/metadata-action] lowercases its [images:] input
when emitting [outputs.tags]; the new push-by-digest path
constructs the image name directly via
[outputs: type=image,name=...] and never goes through metadata
action's auto-lowercasing.
Bash parameter expansion [${VAR,,}] does the lowercase locally
in a small prep step. Applied to both the build matrix
(per-arch push-by-digest) and the merge job (manifest-create +
inspect).
0 commit comments