-
When the amd64 job completes, the image gets pushed to Docker Hub. When the arm64 build completes successfully, it gets pushed to Docker Hub but the amd64 image disappears from Docker Hub. What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
andy5995
Jan 19, 2024
Replies: 1 comment 1 reply
-
I just got it working now after I switched to using |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
crazy-max
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just got it working now after I switched to using
platforms: linux/amd64,linux/arm64
instead of specifying them as a matrix, as shown in my workflow above and in the docker docs:platforms: ${{ matrix.platform }}
. Is this a bug or did I miss something?