run flatpak build on both x86_64 and aarch64

This commit is contained in:
Henry Hiles 2026-03-25 22:38:06 -04:00
commit ea72654887
No known key found for this signature in database

View file

@ -8,7 +8,15 @@ on:
jobs: jobs:
build-flatpak: 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: steps:
- name: Checkout repository - name: Checkout repository
@ -25,5 +33,5 @@ jobs:
- name: Upload installer artifact - name: Upload installer artifact
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v6
with: with:
name: "nexus.federated.Nexus.flatpak" name: nexus.federated.Nexus-${{ matrix.arch }}.flatpak
path: "result/nexus.federated.Nexus.flatpak" path: result/nexus.federated.Nexus.flatpak