File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,11 @@ jobs:
3030 - name : Pack
3131 run : dotnet pack -c Release --nologo --no-build
3232
33- - name : Push to NuGet
34- continue-on-error : true
35- run : dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter/**/*.nupkg
33+ - name : Push TimeZoneConverter to NuGet
34+ run : dotnet nuget push --skip-duplicate -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter/**/*.nupkg
3635
37- - name : Push to NuGet
38- continue-on-error : true
39- run : dotnet nuget push -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter.Posix/**/*.nupkg
36+ - name : Push TimeZoneConverter.Posix to NuGet
37+ run : dotnet nuget push --skip-duplicate -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} src/TimeZoneConverter.Posix/**/*.nupkg
4038
4139 - name : Archive Artifacts
4240 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments