From afaf665ed3d9fefaa49b71233d1d60ca0c2976a3 Mon Sep 17 00:00:00 2001 From: scosman Date: Thu, 21 Nov 2024 14:25:23 -0500 Subject: [PATCH] Build linux arm64 --- .github/workflows/build_desktop.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_desktop.yml b/.github/workflows/build_desktop.yml index 838f243..35d22df 100644 --- a/.github/workflows/build_desktop.yml +++ b/.github/workflows/build_desktop.yml @@ -10,7 +10,14 @@ jobs: fail-fast: false matrix: # macos-latest is for arm64 build, macos-13 is for x86_64 - os: ["windows-latest", "macos-latest", "macos-13", "ubuntu-latest"] + include: + - os: windows-latest + - os: macos-latest # arm64 + - os: macos-13 # x86_64 + - os: ubuntu-latest + arch: x64 + - os: ubuntu-latest + arch: arm64 steps: - uses: actions/checkout@v4