From 18e827ed0cabf3e857b0d1f65b8955a7cc4d8f9a Mon Sep 17 00:00:00 2001 From: Kevin Lefevre Date: Tue, 10 Sep 2024 13:37:50 +0200 Subject: [PATCH] feat: build linux ARM docker image fixes #111 Signed-off-by: Kevin Lefevre --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index de11e2aa..5c77181b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -86,6 +86,9 @@ jobs: with: ref: "stable" + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 @@ -112,6 +115,7 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: | ghcr.io/commit-boost/pbs:${{ github.ref_name }} ghcr.io/commit-boost/pbs:latest @@ -124,6 +128,7 @@ jobs: with: context: . push: true + platforms: linux/amd64,linux/arm64 tags: | ghcr.io/commit-boost/signer:${{ github.ref_name }} ghcr.io/commit-boost/signer:latest