From ced6c4815a36360df7c3fc0dbdc02ecafe3b1214 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 18 Jan 2025 01:04:59 -0500 Subject: OK --- .github/workflows/pipeline_run.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/pipeline_run.yml b/.github/workflows/pipeline_run.yml index 7aefcc8..5e73df8 100644 --- a/.github/workflows/pipeline_run.yml +++ b/.github/workflows/pipeline_run.yml @@ -55,8 +55,13 @@ on: jobs: publish: - name: Publish - runs-on: ubuntu-latest + name: Publish (${{ runner.os }}-${{ runner.arch }}) + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: + - ubuntu-latest + - ubuntu-arm64 steps: - name: Checkout uses: actions/checkout@v4 -- cgit