From 193fafdadec1fe597d355248459657ff70c7c94a Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Thu, 16 Apr 2026 10:50:57 -0400 Subject: [PATCH] include arch in flatpak build artifact --- .github/workflows/flatpak.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index fdfb02b..ba5779a 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -30,9 +30,11 @@ jobs: - name: Build app run: nix build .#flatpak + - name: Rename flatpak + run: mv result/nexus.federated.Nexus.flatpak nexus.federated.Nexus-${{ matrix.arch }}.flatpak + - name: Upload installer artifact uses: actions/upload-artifact@v7 with: - name: flatpak-${{ matrix.arch }} - path: result/nexus.federated.Nexus.flatpak + path: nexus.federated.Nexus-${{ matrix.arch }}.flatpak archive: false \ No newline at end of file