Extract podcast metadata from tags and sidecar files

This commit is contained in:
2026-09-22 21:39:33 -04:00
parent 178496582c
commit cbcc42d831
14 changed files with 884 additions and 154 deletions

View File

@ -30,6 +30,13 @@ jobs:
- name: Build sdist and wheel
run: python -m build
- name: Build release zip
run: |
set -euo pipefail
VERSION="${{ gitea.ref_name }}"
cd dist
zip "Mopidy-Webhooks-${VERSION}.zip" *.tar.gz
- name: Publish to Gitea release
env:
GITEA_TOKEN: ${{ secrets.GITEA }}