3 Commits
0.3.0 ... main

Author SHA1 Message Date
9c02f6ea87 Bump version to 0.3.1
All checks were successful
CI / test (push) Successful in 1m20s
Release / release (push) Successful in 16s
2026-09-22 21:56:24 -04:00
a13e206104 Use built-in GITEA_TOKEN to publish releases 2026-09-22 21:56:23 -04:00
387baf64a8 Run CI on the Gitea runner image with GStreamer typelibs
All checks were successful
CI / test (push) Successful in 3m29s
2026-09-22 21:50:19 -04:00
3 changed files with 10 additions and 6 deletions

View File

@ -7,14 +7,18 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-24.04
container: ghcr.io/mopidy/ci:7
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Install GStreamer typelibs for Mopidy
run: |
sudo apt-get update
sudo apt-get install -y gir1.2-gstreamer-1.0 gir1.2-gst-plugins-base-1.0
- name: Install package and test dependencies - name: Install package and test dependencies
run: python -m pip install -e ".[test]" run: python3 -m pip install --break-system-packages -e ".[test]"
- name: Run tests - name: Run tests
run: python -m pytest run: python3 -m pytest

View File

@ -39,7 +39,7 @@ jobs:
- name: Publish to Gitea release - name: Publish to Gitea release
env: env:
GITEA_TOKEN: ${{ secrets.GITEA }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
run: | run: |
set -euo pipefail set -euo pipefail
VERSION="${{ gitea.ref_name }}" VERSION="${{ gitea.ref_name }}"

View File

@ -1,6 +1,6 @@
[metadata] [metadata]
name = Mopidy-Webhooks name = Mopidy-Webhooks
version = 0.3.0 version = 0.3.1
url = https://github.com/powellc/mopidy-webhooks url = https://github.com/powellc/mopidy-webhooks
author = Colin Powell author = Colin Powell
author_email = colin@unbl.ink author_email = colin@unbl.ink