From 24ed1de9594bb2bbda7861571ea37abd718e3837 Mon Sep 17 00:00:00 2001 From: Duncan Tourolle Date: Fri, 14 Nov 2025 20:43:09 +0100 Subject: [PATCH] CI fix --- .gitea/workflows/build.yaml | 6 +++--- .gitea/workflows/release.yaml | 6 +++--- .gitea/workflows/test.yaml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 3668cb5..ca04789 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -25,13 +25,13 @@ jobs: run: dotnet --version - name: Restore dependencies - run: dotnet restore + run: dotnet restore Jellyfin.Plugin.SRFPlay.sln - name: Build solution - run: dotnet build --configuration Release --no-restore + run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore - name: Run tests - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal - name: Install JPRM run: | diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 3b2520f..c6d4111 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -41,13 +41,13 @@ jobs: cat build.yaml - name: Restore dependencies - run: dotnet restore + run: dotnet restore Jellyfin.Plugin.SRFPlay.sln - name: Build solution - run: dotnet build --configuration Release --no-restore + run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Release --no-restore - name: Run tests - run: dotnet test --no-build --configuration Release --verbosity normal + run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Release --verbosity normal - name: Install JPRM run: | diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 974c721..a460c8b 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -27,13 +27,13 @@ jobs: run: dotnet --version - name: Restore dependencies - run: dotnet restore + run: dotnet restore Jellyfin.Plugin.SRFPlay.sln - name: Build solution - run: dotnet build --configuration Debug --no-restore + run: dotnet build Jellyfin.Plugin.SRFPlay.sln --configuration Debug --no-restore - name: Run tests - run: dotnet test --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx" + run: dotnet test Jellyfin.Plugin.SRFPlay.sln --no-build --configuration Debug --verbosity normal --logger "trx;LogFileName=test-results.trx" - name: Upload test results if: always()