File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33 "isRoot" : true ,
44 "tools" : {
55 "fsharp.formatting.commandtool" : {
6- "version" : " 6.0.8 " ,
6+ "version" : " 6.0.9 " ,
77 "commands" : [
88 " fsdocs"
99 ]
Original file line number Diff line number Diff line change 1+ ### 3.0.2
2+
3+ * bump version due to bad push
4+
15### 3.0.1
26
37* Move to only netstandard 2.1
Original file line number Diff line number Diff line change @@ -129,8 +129,9 @@ Target.create "PublishNuget" (fun _ ->
129129 let source = " https://api.nuget.org/v3/index.json"
130130 let apikey = Environment.environVar " NUGET_KEY"
131131 for artifact in !! ( artifactsDir + " /*nupkg" ) do
132- let result = DotNet.exec id " nuget" ( sprintf " push -s %s -k %s %s " source apikey artifact)
133- if not result.OK then failwith " failed to push packages"
132+ if not ( artifact.Contains( " .symbols" )) then
133+ let result = DotNet.exec id " nuget" ( sprintf " push -s %s -k %s %s " source apikey artifact)
134+ if not result.OK then failwith " failed to push packages"
134135)
135136Target.create " ReleaseDocs" ( fun _ ->
136137 Git.Repository.clone " " projectRepo " temp/gh-pages"
You can’t perform that action at this time.
0 commit comments