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 a06bf53 commit aa0d9e4Copy full SHA for aa0d9e4
build.fsx
@@ -116,7 +116,12 @@ Target.create "Push" (fun _ ->
116
match getBuildParam "nuget-key" with
117
| s when not (isNullOrWhiteSpace s) -> s
118
| _ -> UserInput.getUserPassword "NuGet Key: "
119
- Paket.push (fun p -> { p with WorkingDir = packageDir; ApiKey = key }))
+ DotNet.nugetPush (fun p ->
120
+ { p with
121
+ PushParams = { p.PushParams with
122
+ ApiKey = Some key } }
123
+ ) $"{packageDir}/*.nupkg"
124
+)
125
126
// --------------------------------------------------------------------------------------
127
// Build order
0 commit comments