Replace armv7 with x86

This commit is contained in:
Felipe Knorr Kuhn 2023-09-29 19:30:56 -07:00
parent 3ec8a6955c
commit 003f3cf8b1
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A

View File

@ -98,7 +98,7 @@ jobs:
docker buildx build \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--platform linux/amd64,linux/arm64,linux/arm/v7 \
--platform linux/amd64,linux/arm64,linux/x86 \
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:$TAG \
--tag ${{ secrets.DOCKER_HUB_USER }}/${{ matrix.service }}:latest \
--output "type=registry" ./${{ matrix.service }}/ \