From ea72654887cdbb262b80ca54cdf578a046c36927 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 25 Mar 2026 22:38:06 -0400 Subject: [PATCH] run flatpak build on both x86_64 and aarch64 --- .github/workflows/flatpak.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 61e1023..74ae377 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -8,7 +8,15 @@ on: jobs: build-flatpak: - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + include: + - arch: x86_64 + runner: ubuntu-latest + - arch: aarch64 + runner: ubuntu-24.04-arm + runs-on: ${{ matrix.runner }} steps: - name: Checkout repository @@ -25,5 +33,5 @@ jobs: - name: Upload installer artifact uses: actions/upload-artifact@v6 with: - name: "nexus.federated.Nexus.flatpak" - path: "result/nexus.federated.Nexus.flatpak" \ No newline at end of file + name: nexus.federated.Nexus-${{ matrix.arch }}.flatpak + path: result/nexus.federated.Nexus.flatpak \ No newline at end of file