Add flatpak build
This commit is contained in:
parent
28dfe9e981
commit
e7b772ef66
1 changed files with 27 additions and 0 deletions
27
.github/workflows/flatpak.yml
vendored
Normal file
27
.github/workflows/flatpak.yml
vendored
Normal file
|
|
@ -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"
|
||||||
Loading…
Add table
Add a link
Reference in a new issue