From 11bbc698e883056cb1f2ca8b743d5ed1f0da2529 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Tue, 27 Aug 2024 14:25:37 -0600 Subject: [PATCH] fix linux runner name --- .github/workflows/binaries.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 9115e0e82f..ba0b8ec8d0 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -18,12 +18,12 @@ jobs: os: - img: macos- family: macos - - img: ubuntu-latest + - img: ubuntu- family: linux arch: - x86_64 - aarch64 - runs-on: ${{ matrix.os.img }}${{ matrix.os.family == 'macos' && matrix.arch == 'aarch64' && '13' || 'latest' }} + runs-on: ${{ matrix.os.img }}${{ (matrix.os.family == 'macos' && matrix.arch == 'aarch64') && '13' || 'latest' }} env: WORKSPACE: ${{ github.workspace }} OUTPUT_DIR: ${{ github.workspace }}/output-${{ matrix.os.family }}-${{ matrix.arch }}