From 38944d3b0647e8ea9193a3dd618be16600c46bd6 Mon Sep 17 00:00:00 2001 From: Fabian Terhorst Date: Sun, 8 Sep 2024 14:12:16 +0200 Subject: [PATCH] Add arm64 docker image publish --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 726f090..e4ad8d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Log in to the Container registry @@ -56,5 +58,6 @@ jobs: with: context: . labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 push: true tags: ${{ steps.meta.outputs.tags }}