Skip to content

Commit b0a00ed

Browse files
committed
fix nuget source
1 parent aa0d9e4 commit b0a00ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

build.fsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ open Fake.Api
2323

2424
let project = "Fornax"
2525
let summary = "Fornax is a static site generator using type safe F# DSL to define page layouts"
26-
26+
let nugetOrg = "https://api.nuget.org/v3/index.json"
2727
let gitOwner = "Ionide"
2828
let gitHome = "https://github.com/" + gitOwner
2929
let gitName = "Fornax"
@@ -119,7 +119,8 @@ Target.create "Push" (fun _ ->
119119
DotNet.nugetPush (fun p ->
120120
{ p with
121121
PushParams = { p.PushParams with
122-
ApiKey = Some key } }
122+
ApiKey = Some key
123+
Source = Some nugetOrg } }
123124
) $"{packageDir}/*.nupkg"
124125
)
125126

0 commit comments

Comments
 (0)