ci(debian): add gitea workflow for automated deb package building
Build Debian Package / build (push) Successful in 1m28s

Signed-off-by: Arian Nasr <arian@2ari.ca>
This commit is contained in:
2026-05-27 00:21:46 -04:00
parent f3743cc9c0
commit 310ebfe903
+27
View File
@@ -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