File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 3838 echo "Found packages: $PACKAGES"
3939 for PACKAGE in $PACKAGES; do
4040 echo "Pushing $PACKAGE to Nexus"
41- dotnet nuget push "$PACKAGE" --source esdm-nuget-hosted --skip-duplicate
41+ dotnet nuget push "$PACKAGE" --source esdm-nuget-hosted --skip-duplicate || echo "Skipping duplicate package: $PACKAGE"
4242 done
4343 - name : Find and Push NuGet packages to nuget.org
4444 run : |
5050 echo "Found packages: $PACKAGES"
5151 for PACKAGE in $PACKAGES; do
5252 echo "Pushing $PACKAGE to nuget.org"
53- dotnet nuget push "$PACKAGE" --api-key "$NUGET_ORG_API_KEY" --source "https://api.nuget.org/v3/index.json" --skip-duplicate
53+ dotnet nuget push "$PACKAGE" --api-key "$NUGET_ORG_API_KEY" --source "https://api.nuget.org/v3/index.json" --skip-duplicate || echo "Warning - failed package: $PACKAGE"
5454 done
You can’t perform that action at this time.
0 commit comments