File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed
Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -155,4 +155,16 @@ jobs:
155155 run : |
156156 dotnet nuget push .\artifacts\*.nupkg -k ${{secrets.MYGET_TOKEN}} -s https://www.myget.org/F/sixlabors/api/v2/package
157157 dotnet nuget push .\artifacts\*.snupkg -k ${{secrets.MYGET_TOKEN}} -s https://www.myget.org/F/sixlabors/api/v3/index.json
158- # TODO: If github.ref starts with 'refs/tags' then it was tag push and we can optionally push out package to nuget.org
158+
159+ - name : Feedz Publish
160+ shell : pwsh
161+ run : |
162+ dotnet nuget push .\artifacts\*.nupkg -k ${{secrets.FEEDZ_TOKEN}} -s https://f.feedz.io/sixlabors/sixlabors/nuget/index.json --skip-duplicate
163+ dotnet nuget push .\artifacts\*.snupkg -k ${{secrets.FEEDZ_TOKEN}} -s https://f.feedz.io/sixlabors/sixlabors/symbols --skip-duplicate
164+
165+ - name : NuGet Publish
166+ if : ${{ startsWith(github.ref, 'refs/tags/') }}
167+ shell : pwsh
168+ run : |
169+ dotnet nuget push .\artifacts\*.nupkg -k ${{secrets.NUGET_TOKEN}} -s https://api.nuget.org/v3/index.json --skip-duplicate
170+ dotnet nuget push .\artifacts\*.snupkg -k ${{secrets.NUGET_TOKEN}} -s https://api.nuget.org/v3/index.json --skip-duplicate
Original file line number Diff line number Diff line change 1919 </ItemGroup >
2020 <ItemGroup >
2121 <PackageReference Include =" SixLabors.Fonts" Version =" 1.0.0" />
22- <PackageReference Include =" SixLabors.ImageSharp" Version =" 2.1.3 " />
22+ <PackageReference Include =" SixLabors.ImageSharp" Version =" 2.1.5 " />
2323 </ItemGroup >
2424 <Import Project =" ..\..\shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems" Label =" Shared" />
2525</Project >
You can’t perform that action at this time.
0 commit comments