Skip to content

Commit 6982e50

Browse files
committed
udpate docs tool
1 parent 0a73fa5 commit 6982e50

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"fsharp.formatting.commandtool": {
6-
"version": "6.0.8",
6+
"version": "6.0.9",
77
"commands": [
88
"fsdocs"
99
]

RELEASE_NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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

build.fsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)
135136
Target.create "ReleaseDocs" (fun _ ->
136137
Git.Repository.clone "" projectRepo "temp/gh-pages"

0 commit comments

Comments
 (0)