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