File tree 2 files changed +14
-2
lines changed
2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -155,4 +155,16 @@ jobs:
155
155
run : |
156
156
dotnet nuget push .\artifacts\*.nupkg -k ${{secrets.MYGET_TOKEN}} -s https://www.myget.org/F/sixlabors/api/v2/package
157
157
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 19
19
</ItemGroup >
20
20
<ItemGroup >
21
21
<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 " />
23
23
</ItemGroup >
24
24
<Import Project =" ..\..\shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems" Label =" Shared" />
25
25
</Project >
You can’t perform that action at this time.
0 commit comments