From 6446f26fec9fa9e4a5d06612c6316719906f4e72 Mon Sep 17 00:00:00 2001 From: Simon Smith Date: Sun, 26 Oct 2025 23:56:07 +0000 Subject: [PATCH] add other archs and dont cache qemu/build Signed-off-by: Simon Smith --- .github/workflows/dockersimple.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dockersimple.yml b/.github/workflows/dockersimple.yml index ef5d360b..b75c474e 100644 --- a/.github/workflows/dockersimple.yml +++ b/.github/workflows/dockersimple.yml @@ -29,9 +29,13 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3 + with: + cache-image: false - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 + with: + cache-binary: false - name: Log in to the Container registry uses: docker/login-action@v3 @@ -70,7 +74,7 @@ jobs: with: context: . file: docker/Dockerfile - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6 push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}