run flatpak build on both x86_64 and aarch64
This commit is contained in:
parent
f1af130a63
commit
ea72654887
1 changed files with 11 additions and 3 deletions
14
.github/workflows/flatpak.yml
vendored
14
.github/workflows/flatpak.yml
vendored
|
|
@ -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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue