From e7b772ef66c6ba7d770a0346b235ed63ed3206c8 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Wed, 25 Mar 2026 22:29:24 -0400 Subject: [PATCH] Add flatpak build --- .github/workflows/flatpak.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/flatpak.yml diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml new file mode 100644 index 0000000..a5d8888 --- /dev/null +++ b/.github/workflows/flatpak.yml @@ -0,0 +1,27 @@ +name: "Build Flatpaks" + +on: + workflow_dispatch: + +jobs: + build-windows: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + + - name: Lix GHA Installer Action + uses: samueldr/lix-gha-installer-action@v2026-02-22 + + - name: Enable flakes + run: echo "experimental-features = nix-command flakes" > /etc/nix/nix.conf + + - name: Build app + run: nix build .#flatpak + + - 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