From ca79182c95efb7706d70b0a8db20f209035efb73 Mon Sep 17 00:00:00 2001 From: Ben McClelland Date: Mon, 22 Jul 2024 10:00:58 -0700 Subject: [PATCH] feat: add arm64 docker images --- .github/workflows/docker.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index 18053846..a2be9b8d 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -15,6 +15,13 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v3 + - name: Log in to Docker Hub uses: docker/login-action@v3 with: @@ -43,6 +50,7 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 build-args: | VERSION=${{ github.event.release.tag_name }} TIME=${{ github.event.release.published_at }}