ddf4a6cb29
- Add `linux` (dbus-python, PyGObject, python-xlib) and `macos`
(pyobjc) extras to pyproject.toml with sys_platform markers; move
cross-platform screen-brightness-control + monitorcontrol to base deps.
- build-dist-linux.sh: install `.[linux]`, pkg-config pre-flight for
dbus-1/glib-2.0, emit a systemd unit with DBUS_SESSION_BUS_ADDRESS +
XDG_RUNTIME_DIR + ReadWritePaths for ~/.config and ~/.cache so MPRIS
works and audit-log / thumbnail writes aren't blocked by ProtectHome.
- New build-dist-macos.sh + per-user LaunchAgent installer producing
MediaServer-vX.Y-macos-{arm64,x86_64}.tar.gz.
- Templated media-server.service updated to match the dist layout with
proper session-bus env vars and a writable state-dir grant.
- install_linux.sh: drop dead requirements.txt path; install via
`pip install ".[linux]"` and pre-create the writable state dirs.
- Cross-platform album artwork: abstract MediaController.get_album_art()
with Linux (mpris:artUrl, file:// + http(s)://) and macOS (Spotify URL)
impls; routes/media artwork endpoint now awaits the controller.
- LinuxMediaController connects to the session bus lazily — failure no
longer crashes lifespan startup; MPRIS calls return idle until the bus
is reachable. Logged once at INFO with a hint about
`loginctl enable-linger`.
- Startup preflight on Linux warns if DBUS_SESSION_BUS_ADDRESS or
XDG_RUNTIME_DIR is unset and informs the user when Wayland disables
the foreground probe.
- /api/media/visualizer/status now reports a per-OS unavailable_reason.
- tray._confirm guarded against ctypes.windll on non-Windows.
- config.example.yaml: per-OS commented script examples; on_turn_off
default is now a no-op echo (used to silently fail off Windows).
- README: replace stale `pip install -r requirements.txt` instructions
with the new extras; add systemd lingering doc + troubleshooting
section; add macOS LaunchAgent section.
- CI: new linux-smoke job (installs `.[linux]`, boots the server under
dbus-run-session, asserts /api/health). Release workflow gains
apt-deps step for the Linux build and a best-effort macOS build job.
297 lines
9.6 KiB
YAML
297 lines
9.6 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
# --- Create Gitea release ---
|
|
create-release:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
release_id: ${{ steps.create.outputs.release_id }}
|
|
version: ${{ steps.create.outputs.version }}
|
|
steps:
|
|
- name: Fetch RELEASE_NOTES.md only
|
|
uses: actions/checkout@v4
|
|
with:
|
|
sparse-checkout: RELEASE_NOTES.md
|
|
sparse-checkout-cone-mode: false
|
|
|
|
- name: Create Gitea release
|
|
id: create
|
|
env:
|
|
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
|
|
run: |
|
|
TAG="${{ gitea.ref_name }}"
|
|
VERSION="${TAG#v}"
|
|
BASE_URL="${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}"
|
|
|
|
IS_PRE="false"
|
|
if echo "$TAG" | grep -qE '(alpha|beta|rc)'; then
|
|
IS_PRE="true"
|
|
fi
|
|
|
|
if [ -f RELEASE_NOTES.md ]; then
|
|
export RELEASE_NOTES=$(cat RELEASE_NOTES.md)
|
|
echo "Found RELEASE_NOTES.md"
|
|
else
|
|
export RELEASE_NOTES=""
|
|
echo "No RELEASE_NOTES.md found"
|
|
fi
|
|
|
|
BODY_JSON=$(python3 -c "
|
|
import json, os, textwrap
|
|
|
|
tag = '$TAG'
|
|
release_notes = os.environ.get('RELEASE_NOTES', '')
|
|
|
|
sections = []
|
|
|
|
if release_notes.strip():
|
|
sections.append(release_notes.strip())
|
|
|
|
sections.append(textwrap.dedent(f'''
|
|
## Downloads
|
|
|
|
| Platform | File |
|
|
|----------|------|
|
|
| Windows (installer) | \`MediaServer-{tag}-setup.exe\` |
|
|
| Windows (portable) | \`MediaServer-{tag}-win-x64.zip\` |
|
|
| Linux | \`MediaServer-{tag}-linux-x64.tar.gz\` |
|
|
| macOS (Apple Silicon) | \`MediaServer-{tag}-macos-arm64.tar.gz\` |
|
|
| macOS (Intel) | \`MediaServer-{tag}-macos-x86_64.tar.gz\` |
|
|
''').strip())
|
|
|
|
print(json.dumps('\n\n'.join(sections)))
|
|
")
|
|
|
|
RELEASE=$(curl -s -X POST "$BASE_URL/releases" \
|
|
-H "Authorization: token $DEPLOY_TOKEN" \
|
|
-H "Content-Type: application/json" \
|
|
-d "{
|
|
\"tag_name\": \"$TAG\",
|
|
\"name\": \"Media Server $TAG\",
|
|
\"body\": $BODY_JSON,
|
|
\"draft\": false,
|
|
\"prerelease\": $IS_PRE
|
|
}")
|
|
|
|
# Extract release ID; if creation failed (already exists), fetch existing
|
|
RELEASE_ID=$(echo "$RELEASE" | python3 -c "
|
|
import sys, json
|
|
data = json.load(sys.stdin)
|
|
if 'id' in data:
|
|
print(data['id'])
|
|
else:
|
|
print('FAILED', file=sys.stderr)
|
|
print(json.dumps(data, indent=2), file=sys.stderr)
|
|
sys.exit(1)
|
|
" 2>&1) || {
|
|
echo "::warning::Release already exists for tag $TAG — reusing existing release"
|
|
RELEASE=$(curl -s "$BASE_URL/releases/tags/$TAG" \
|
|
-H "Authorization: token $DEPLOY_TOKEN")
|
|
RELEASE_ID=$(echo "$RELEASE" | python3 -c "import sys,json; print(json.load(sys.stdin)['id'])")
|
|
}
|
|
echo "release_id=$RELEASE_ID" >> "$GITHUB_OUTPUT"
|
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
# --- Build Windows installer + portable ZIP ---
|
|
build-windows:
|
|
needs: create-release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Build frontend
|
|
run: npm ci && npm run build
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install build tools
|
|
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends nsis zip
|
|
|
|
- name: Build Windows distribution
|
|
run: |
|
|
chmod +x build-dist-windows.sh
|
|
./build-dist-windows.sh "${{ gitea.ref_name }}"
|
|
|
|
- name: Build NSIS installer
|
|
run: |
|
|
VERSION="${{ needs.create-release.outputs.version }}"
|
|
makensis -DVERSION="${VERSION}" installer.nsi
|
|
|
|
- name: Upload assets to release
|
|
env:
|
|
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
|
|
run: |
|
|
RELEASE_ID="${{ needs.create-release.outputs.release_id }}"
|
|
BASE_URL="${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}"
|
|
|
|
upload_asset() {
|
|
local file="$1"
|
|
local name
|
|
name=$(basename "$file")
|
|
|
|
# Delete existing asset with the same name (idempotent re-runs)
|
|
EXISTING=$(curl -s "$BASE_URL/releases/$RELEASE_ID/assets" \
|
|
-H "Authorization: token $DEPLOY_TOKEN")
|
|
ASSET_ID=$(echo "$EXISTING" | python3 -c "
|
|
import sys, json
|
|
assets = json.load(sys.stdin)
|
|
for a in assets:
|
|
if a['name'] == '$name':
|
|
print(a['id'])
|
|
break
|
|
" 2>/dev/null || true)
|
|
|
|
if [ -n "$ASSET_ID" ]; then
|
|
echo "Replacing existing asset: $name (id=$ASSET_ID)"
|
|
curl -s -X DELETE "$BASE_URL/releases/$RELEASE_ID/assets/$ASSET_ID" \
|
|
-H "Authorization: token $DEPLOY_TOKEN"
|
|
fi
|
|
|
|
echo "Uploading $name..."
|
|
curl -s -X POST \
|
|
"$BASE_URL/releases/$RELEASE_ID/assets?name=$name" \
|
|
-H "Authorization: token $DEPLOY_TOKEN" \
|
|
-H "Content-Type: application/octet-stream" \
|
|
--data-binary "@$file"
|
|
}
|
|
|
|
for FILE in build/MediaServer-*.zip build/MediaServer-*-setup.exe; do
|
|
[ -f "$FILE" ] || continue
|
|
upload_asset "$FILE"
|
|
done
|
|
|
|
# --- Build Linux tarball ---
|
|
build-linux:
|
|
needs: create-release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Build frontend
|
|
run: npm ci && npm run build
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Install native deps for dbus-python + PyGObject
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y --no-install-recommends \
|
|
libdbus-1-dev libglib2.0-dev pkg-config \
|
|
libcairo2-dev libgirepository1.0-dev
|
|
|
|
- name: Build Linux distribution
|
|
run: |
|
|
chmod +x build-dist-linux.sh
|
|
./build-dist-linux.sh "${{ gitea.ref_name }}"
|
|
|
|
- name: Upload assets to release
|
|
env:
|
|
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
|
|
run: |
|
|
RELEASE_ID="${{ needs.create-release.outputs.release_id }}"
|
|
BASE_URL="${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}"
|
|
|
|
FILE=$(ls build/MediaServer-*-linux-x64.tar.gz | head -1)
|
|
NAME=$(basename "$FILE")
|
|
|
|
# Delete existing asset with the same name (idempotent re-runs)
|
|
EXISTING=$(curl -s "$BASE_URL/releases/$RELEASE_ID/assets" \
|
|
-H "Authorization: token $DEPLOY_TOKEN")
|
|
ASSET_ID=$(echo "$EXISTING" | python3 -c "
|
|
import sys, json
|
|
assets = json.load(sys.stdin)
|
|
for a in assets:
|
|
if a['name'] == '$NAME':
|
|
print(a['id'])
|
|
break
|
|
" 2>/dev/null || true)
|
|
|
|
if [ -n "$ASSET_ID" ]; then
|
|
echo "Replacing existing asset: $NAME (id=$ASSET_ID)"
|
|
curl -s -X DELETE "$BASE_URL/releases/$RELEASE_ID/assets/$ASSET_ID" \
|
|
-H "Authorization: token $DEPLOY_TOKEN"
|
|
fi
|
|
|
|
echo "Uploading $NAME..."
|
|
curl -s -X POST \
|
|
"$BASE_URL/releases/$RELEASE_ID/assets?name=$NAME" \
|
|
-H "Authorization: token $DEPLOY_TOKEN" \
|
|
-H "Content-Type: application/octet-stream" \
|
|
--data-binary "@$FILE"
|
|
|
|
# --- Build macOS tarball (best-effort; requires a macos runner) ---
|
|
# PyObjC wheels are macOS-only, so this job must run on a real Mac.
|
|
# If your Gitea instance has no macos runners, the job is skipped at
|
|
# scheduling time and the rest of the release still ships.
|
|
build-macos:
|
|
needs: create-release
|
|
runs-on: macos-latest
|
|
continue-on-error: true
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: Build frontend
|
|
run: npm ci && npm run build
|
|
|
|
- uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
|
|
- name: Build macOS distribution
|
|
run: |
|
|
chmod +x build-dist-macos.sh
|
|
./build-dist-macos.sh "${{ gitea.ref_name }}"
|
|
|
|
- name: Upload assets to release
|
|
env:
|
|
DEPLOY_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
|
|
run: |
|
|
RELEASE_ID="${{ needs.create-release.outputs.release_id }}"
|
|
BASE_URL="${{ gitea.server_url }}/api/v1/repos/${{ gitea.repository }}"
|
|
|
|
FILE=$(ls build/MediaServer-*-macos-*.tar.gz | head -1)
|
|
NAME=$(basename "$FILE")
|
|
|
|
EXISTING=$(curl -s "$BASE_URL/releases/$RELEASE_ID/assets" \
|
|
-H "Authorization: token $DEPLOY_TOKEN")
|
|
ASSET_ID=$(echo "$EXISTING" | python3 -c "
|
|
import sys, json
|
|
assets = json.load(sys.stdin)
|
|
for a in assets:
|
|
if a['name'] == '$NAME':
|
|
print(a['id'])
|
|
break
|
|
" 2>/dev/null || true)
|
|
|
|
if [ -n "$ASSET_ID" ]; then
|
|
curl -s -X DELETE "$BASE_URL/releases/$RELEASE_ID/assets/$ASSET_ID" \
|
|
-H "Authorization: token $DEPLOY_TOKEN"
|
|
fi
|
|
|
|
curl -s -X POST \
|
|
"$BASE_URL/releases/$RELEASE_ID/assets?name=$NAME" \
|
|
-H "Authorization: token $DEPLOY_TOKEN" \
|
|
-H "Content-Type: application/octet-stream" \
|
|
--data-binary "@$FILE"
|