ci: update multi arch build init

Github action changes base image, we need to install qemu binaries.

Signed-off-by: Serge Logvinov <serge.logvinov@sinextra.dev>
This commit is contained in:
Serge Logvinov
2024-03-15 07:12:27 +02:00
committed by Serge
parent c1ab34cba5
commit 36757fc0be

View File

@@ -1,6 +1,7 @@
name: Build edge name: Build edge
on: on:
workflow_dispatch:
push: push:
branches: branches:
- main - main
@@ -23,11 +24,17 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
with:
ref: main
- name: Unshallow - name: Unshallow
run: git fetch --prune --unshallow run: git fetch --prune --unshallow
- name: Install Cosign - name: Install Cosign
uses: sigstore/cosign-installer@v3.4.0 uses: sigstore/cosign-installer@v3.4.0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
- name: Set up docker buildx - name: Set up docker buildx
run: make docker-init run: make docker-init