Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed Feb 14, 2020
1 parent 1d000a9 commit 150e1ec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
3 changes: 3 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 5.3.1
* Fix packaging issue.

### 5.3.0
* Fix deserialization in AssemblyLoadContexts.

Expand Down
13 changes: 5 additions & 8 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,11 @@ Target.create "NuGet.ValidateSourceLink" (fun _ ->
)

Target.create "NuGet.Push" (fun _ ->
DotNet.nugetPush (fun opts ->
{ opts with
PushParams =
{ opts.PushParams with
NoSymbols = true
Source = Some "https://api.nuget.org/v3/index.json"
ApiKey = Some (Environment.GetEnvironmentVariable "NUGET_KEY") }
}) (artifacts + "/*")
for artifact in !! (artifacts + "/*nupkg") do
let source = "https://api.nuget.org/v3/index.json"
let key = Environment.GetEnvironmentVariable "NUGET_KEY"
let result = DotNet.exec id "nuget" (sprintf "push -s %s -k %s %s" source key artifact)
if not result.OK then failwith "failed to push packages"
)

// Doc generation
Expand Down

0 comments on commit 150e1ec

Please sign in to comment.