From 7bac48984c4c12be4824d416f83317f9a907079f Mon Sep 17 00:00:00 2001 From: yubiuser Date: Mon, 9 Jun 2025 12:56:13 +0200 Subject: [PATCH] Build ARM on ARM Signed-off-by: yubiuser --- .github/workflows/build-and-publish.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-publish.yml b/.github/workflows/build-and-publish.yml index ce7c319..4840265 100644 --- a/.github/workflows/build-and-publish.yml +++ b/.github/workflows/build-and-publish.yml @@ -16,11 +16,23 @@ env: jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.runner }} strategy: fail-fast: false matrix: - platform: [linux/amd64, linux/386, linux/arm/v6, linux/arm/v7, linux/arm64, linux/riscv64] + include: + - platform: linux/amd64 + runner: ubuntu-latest + - platform: linux/386 + runner: ubuntu-latest + - platform: linux/arm/v6 + runner: ubuntu-24.04-arm + - platform: linux/arm/v7 + runner: ubuntu-24.04-arm + - platform: linux/arm64 + runner: ubuntu-24.04-arm + - platform: linux/riscv64 + runner: ubuntu-24.04-arm steps: - name: Prepare name for digest up/download