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 aa0d9e4 commit b0a00edCopy full SHA for b0a00ed
build.fsx
@@ -23,7 +23,7 @@ open Fake.Api
23
24
let project = "Fornax"
25
let summary = "Fornax is a static site generator using type safe F# DSL to define page layouts"
26
-
+let nugetOrg = "https://api.nuget.org/v3/index.json"
27
let gitOwner = "Ionide"
28
let gitHome = "https://github.com/" + gitOwner
29
let gitName = "Fornax"
@@ -119,7 +119,8 @@ Target.create "Push" (fun _ ->
119
DotNet.nugetPush (fun p ->
120
{ p with
121
PushParams = { p.PushParams with
122
- ApiKey = Some key } }
+ ApiKey = Some key
123
+ Source = Some nugetOrg } }
124
) $"{packageDir}/*.nupkg"
125
)
126
0 commit comments