From e0c7eca5eea13282eb922a0fc8bc1a044ac15b16 Mon Sep 17 00:00:00 2001 From: Bas Zoetekouw Date: Mon, 21 Oct 2024 14:11:05 +0200 Subject: [PATCH] build for arm64, try 2 --- .github/workflows/deploy.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 992ac681..0e7d2f6e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -125,12 +125,16 @@ jobs: include: - image: ghcr.io/openconext/openconext-invite/inviteclient app: client + architecture: "linux/amd64,linux/arm64" - image: ghcr.io/openconext/openconext-invite/invitewelcome app: welcome + architecture: "linux/amd64,linux/arm64" - image: ghcr.io/openconext/openconext-invite/inviteprovisioningmock app: provisioning-mock + architecture: "linux/amd64,linux/arm64v8" - image: ghcr.io/openconext/openconext-invite/inviteserver app: server + architecture: "linux/amd64,linux/arm64v8" steps: - uses: actions/checkout@v4 @@ -168,7 +172,7 @@ jobs: with: context: ${{ matrix.app }} file: ${{ matrix.app }}/docker/Dockerfile - platforms: linux/amd64 + platforms: "${{ matrix.architecture }}" push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}