Replies: 1 comment
-
Figured out the issue, and I guess the emitted error message did give a clue if I had understood it then: By tagged ref, it means the image tag tags: docker.io/${{ github.repository }},ghcr.io/${{ github.repository }} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to build a multi-platform image and push to both Docker Hub and GHCR, but after augmenting the image tags in the
metadata-action
step to include the prefixesdocker.io/
andghcr.io/
, the push is now failing (to Docker Hub at least).Full workflow log is available here.
It was previously working when I specified just
${{ github.repository }}
(without any registry-specific prefix) for theimages
input tometadata-action
, so only pushing to Docker Hub (the default), and also left out thetags
input tobuild-push-action
.I've logged in successfully to all the required registries before the
build-push-action
step, so it's likely not an auth issue. I'd appreciate it if anyone can identify what else might be wrong with my workflow.Beta Was this translation helpful? Give feedback.
All reactions