From 310ebfe903265e9fab22b773109ebb7be58b996c Mon Sep 17 00:00:00 2001 From: Arian Nasr Date: Wed, 27 May 2026 00:21:46 -0400 Subject: [PATCH] ci(debian): add gitea workflow for automated deb package building Signed-off-by: Arian Nasr --- .gitea/workflows/build-deb.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/build-deb.yml diff --git a/.gitea/workflows/build-deb.yml b/.gitea/workflows/build-deb.yml new file mode 100644 index 0000000..179142d --- /dev/null +++ b/.gitea/workflows/build-deb.yml @@ -0,0 +1,27 @@ +name: Build Debian Package + +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Make scripts executable + run: | + chmod +x release/build-docker.sh + chmod +x release/build-deb.sh + + - name: Build Debian Package + run: ./release/build-docker.sh + + - name: Upload Build Artifact + uses: actions/upload-artifact@v4 + with: + name: navidrome-uploader-deb + path: output/*.deb + retention-days: 5