Skip to content

Commit

Permalink
fix linux runner name
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Aug 27, 2024
1 parent 386fbc3 commit 11bbc69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit 11bbc69

Please sign in to comment.