File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,10 +42,16 @@ jobs:
4242 - name : Create Packages
4343 run : dotnet pack /p:PackageVersion=${{ github.ref_name }} -c Release -o ./output
4444
45+ - name : NuGet login (OIDC → temp API key)
46+ uses : NuGet/login@v1
47+ id : nuget-login
48+ with :
49+ user : ${{ secrets.NUGET_USER }}
50+
4551 - name : Push Packages
4652 run : |
47- dotnet nuget push "output/*.nupkg" -s https://api.nuget.org/v3/index.json
48- dotnet nuget push "output/*.snupkg" -s https://api.nuget.org/v3/index.json
53+ dotnet nuget push "output/*.nupkg" --api-key ${{ steps.nuget-login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
54+ dotnet nuget push "output/*.snupkg" --api-key ${{ steps.nuget-login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
4955
5056 - name : " Extract latest release notes"
5157 shell : pwsh
Original file line number Diff line number Diff line change 77 <!-- ASP.NET Core Dependencies -->
88 <ItemGroup Label =" ASP.NET Core" >
99 <PackageVersion Include =" Microsoft.AspNetCore.OpenApi" Version =" 10.0.7" />
10- <PackageVersion Include =" Microsoft.Extensions.Http" Version =" 10.0.0 " />
10+ <PackageVersion Include =" Microsoft.Extensions.Http" Version =" 10.0.7 " />
1111 </ItemGroup >
1212
1313 <!-- Data (Dapper for AOT compatibility) -->
1414 <ItemGroup Label =" Data" >
1515 <PackageVersion Include =" Dapper" Version =" 2.1.72" />
16- <PackageVersion Include =" Microsoft.Data.Sqlite" Version =" 10.0.0 " />
16+ <PackageVersion Include =" Microsoft.Data.Sqlite" Version =" 10.0.7 " />
1717 </ItemGroup >
1818
1919 <!-- Utilities -->
3636 <ItemGroup Label =" Test Dependencies" >
3737 <PackageVersion Include =" xunit.v3" Version =" 3.2.2" />
3838 <PackageVersion Include =" xunit.runner.visualstudio" Version =" 3.1.5" />
39- <PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 17.14 .0" />
39+ <PackageVersion Include =" Microsoft.NET.Test.Sdk" Version =" 18.4 .0" />
4040 <PackageVersion Include =" coverlet.collector" Version =" 10.0.0" />
4141 <PackageVersion Include =" Microsoft.AspNetCore.Mvc.Testing" Version =" 10.0.7" />
4242 </ItemGroup >
Original file line number Diff line number Diff line change 88 </PropertyGroup >
99
1010 <ItemGroup >
11+ <PackageReference Include =" Microsoft.Extensions.Http" />
1112 <ProjectReference Include =" ..\SkillServer\SkillServer.csproj" />
1213 </ItemGroup >
1314
You can’t perform that action at this time.
0 commit comments