clean up CI job
All checks were successful
🧪 Test Plugin / test (push) Successful in 1m2s
🚀 Release Plugin / build-and-release (push) Successful in 2m6s
🏗️ Build Plugin / build (push) Successful in 1m59s

This commit is contained in:
Duncan Tourolle 2026-01-10 19:43:41 +01:00
parent 76714eb0c6
commit 4f3af0db69
2 changed files with 2 additions and 12 deletions

View File

@ -33,11 +33,6 @@ jobs:
- name: Run tests - name: Run tests
run: dotnet test Jellyfin.Plugin.Jellypod.sln --no-build --configuration Release --verbosity normal run: dotnet test Jellyfin.Plugin.Jellypod.sln --no-build --configuration Release --verbosity normal
- name: Install JPRM
run: |
python3 -m venv /tmp/jprm-venv
/tmp/jprm-venv/bin/pip install jprm
- name: Build Jellyfin Plugin - name: Build Jellyfin Plugin
id: jprm id: jprm
run: | run: |
@ -45,7 +40,7 @@ jobs:
mkdir -p artifacts mkdir -p artifacts
# Build plugin using JPRM # Build plugin using JPRM
/tmp/jprm-venv/bin/jprm --verbosity=debug plugin build . jprm --verbosity=debug plugin build .
# Find the generated zip file # Find the generated zip file
ARTIFACT=$(find . -name "*.zip" -type f -print -quit) ARTIFACT=$(find . -name "*.zip" -type f -print -quit)

View File

@ -49,11 +49,6 @@ jobs:
- name: Run tests - name: Run tests
run: dotnet test Jellyfin.Plugin.Jellypod.sln --no-build --configuration Release --verbosity normal run: dotnet test Jellyfin.Plugin.Jellypod.sln --no-build --configuration Release --verbosity normal
- name: Install JPRM
run: |
python3 -m venv /tmp/jprm-venv
/tmp/jprm-venv/bin/pip install jprm
- name: Build Jellyfin Plugin - name: Build Jellyfin Plugin
id: jprm id: jprm
run: | run: |
@ -61,7 +56,7 @@ jobs:
mkdir -p artifacts mkdir -p artifacts
# Build plugin using JPRM # Build plugin using JPRM
/tmp/jprm-venv/bin/jprm --verbosity=debug plugin build ./ jprm --verbosity=debug plugin build ./
# Find the generated zip file # Find the generated zip file
ARTIFACT=$(find . -name "*.zip" -type f -print -quit) ARTIFACT=$(find . -name "*.zip" -type f -print -quit)