Replies: 1 comment
-
That makes sense as you have two dedicated builds so one build takes over tags you're pushing. You need to use the |
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 have https://github.com/Ilyes512/php83-fpm repository that builds and pushes images to the Github registry using this action. I do that in 2 different jobs, one for each of the architectures: amd64 and arm64.
When the jobs run the amd64 job it is way quicker because of building in its native architecture. And so when I do a manifest inspect after the amd64 job is done I would see something like this:
But as soon as the arm64 version is done it seems to replace the amd64 version. A manifest inspect would show:
Why does this happen? Do I need to push both architecture images at the same time? I thought it would "append" the architecture to the manifest.
Beta Was this translation helpful? Give feedback.
All reactions