We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a2388d commit b71a2e0Copy full SHA for b71a2e0
build/default.ps1
@@ -107,8 +107,8 @@ Task Package -depends Build {
107
Task Deploy -depends Package {
108
109
foreach($project in $projects) {
110
- Exec { dotnet nuget push "..\dist\$project.*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" }
+ Exec { dotnet nuget push "../dist/$($project.ToLower()).*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" --skip-duplicate }
111
}
112
113
- Exec { dotnet nuget push "..\dist\nhapi.3.*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" }
+ Exec { dotnet nuget push "../dist/nhapi.3.*.nupkg" -k $apiKey -sk $apiKey -s "https://api.nuget.org/v3/index.json" }
114
0 commit comments