From 94a318b2d6f1c1cebd877bc3aa5ec2976bfa2ea2 Mon Sep 17 00:00:00 2001 From: Georgy Malkov Date: Fri, 27 Oct 2023 17:18:16 +0300 Subject: [PATCH] Multiarch docker image build (#22) --- .github/workflows/build_application_docker.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build_application_docker.yaml b/.github/workflows/build_application_docker.yaml index d1f0cbca..89a0bdff 100644 --- a/.github/workflows/build_application_docker.yaml +++ b/.github/workflows/build_application_docker.yaml @@ -22,6 +22,9 @@ jobs: packages: write steps: - uses: actions/checkout@v4 + - uses: docker/setup-qemu-action@v3 + with: + platforms: 'arm64' - uses: docker/setup-buildx-action@v3 - name: 'Get release build version' run: | @@ -51,6 +54,7 @@ jobs: app_version=${{ env.BUILD_VERSION }} context: . push: true + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} cache-from: type=gha