From abeff59cf6af600da4c6cc5455ace8ae526e247d Mon Sep 17 00:00:00 2001 From: jamesread Date: Tue, 24 Sep 2024 13:16:22 +0100 Subject: [PATCH] ci: Fix container matrix job --- .github/workflows/build-containers.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-containers.yml b/.github/workflows/build-containers.yml index fde2e0c7..f6276a26 100644 --- a/.github/workflows/build-containers.yml +++ b/.github/workflows/build-containers.yml @@ -23,12 +23,12 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest - arch: [amd64] - - os: [self-hosted, ARM64] - arch: [arm64] + - runnertags: ubuntu-latest + arch: amd64 + - runnertags: [self-hosted, ARM64] + arch: arm64 - runs-on: ${{ matrix.os }} + runs-on: ${{ matrix.runnertags }} steps: - name: Checkout uses: actions/checkout@v4