From 73835b500db2eba7a175d165c6c331456b64b9f9 Mon Sep 17 00:00:00 2001 From: Tine Date: Sat, 18 May 2024 22:24:35 +0200 Subject: [PATCH] ci: build arm64 image, ensure concurency for deploy --- .github/workflows/build.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2a3feca..2fc2339 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -51,13 +51,15 @@ jobs: file: build/Dockerfile context: . push: ${{ github.event_name != 'pull_request' }} - platforms: linux/amd64 + platforms: linux/amd64,linux/arm64 tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} deploy: runs-on: ubuntu-latest needs: build + concurrency: + group: ${{ github.workflow }}-${{ github.ref }} steps: - name: Checkout uses: actions/checkout@v2