This commit is contained in:
Joe Milazzo
2026-03-12 13:06:43 -05:00
committed by GitHub
parent 8880a590e6
commit e57ac309eb
34 changed files with 303 additions and 184 deletions
+2 -2
View File
@@ -30,13 +30,13 @@ jobs:
run: dotnet restore
- name: Build project
run: dotnet build API/API.csproj --configuration Debug --output ./build-output
run: dotnet build Kavita.Server/Kavita.Server.csproj --configuration Debug --output ./build-output
- name: Get Swashbuckle version
id: swashbuckle-version
run: |
VERSION=$(grep -o '<PackageReference Include="Swashbuckle.AspNetCore" Version="[^"]*"' API/API.csproj | grep -o 'Version="[^"]*"' | cut -d'"' -f2)
VERSION=$(grep -o '<PackageReference Include="Swashbuckle.AspNetCore" Version="[^"]*"' Kavita.Server/Kavita.Server.csproj | grep -o 'Version="[^"]*"' | cut -d'"' -f2)
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
echo "Found Swashbuckle.AspNetCore version: $VERSION"