Skip to content

Commit 27c8181

Browse files
committed
Here we go again with CI fix commits
1 parent 573ea14 commit 27c8181

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

build.fsx

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@ Target.create "BuildReleasePackages" (fun _ ->
229229
ReleaseNotes = release.Notes |> String.toLines })
230230
)
231231

232+
Target.create "BuildCIPackages" (fun _ ->
233+
Paket.pack(fun p ->
234+
{ p with
235+
ToolType = ToolType.CreateLocalTool()
236+
OutputPath = pkgDir
237+
Version = sprintf "%s-appveyor.%s" release.NugetVersion BuildServer.appVeyorBuildVersion
238+
ReleaseNotes = release.Notes |> String.toLines })
239+
)
240+
232241
Target.create "PublishNuget" (fun _ ->
233242
Paket.push(fun p ->
234243
{ p with
@@ -305,6 +314,7 @@ Target.create "CIBuild" ignore
305314
Target.create "BuildOnly" ignore
306315
Target.create "DotnetCoreBuild" ignore
307316

317+
308318
"Clean"
309319
==> "CleanDocs"
310320
==> "AssemblyInfo"
@@ -339,15 +349,6 @@ Target.create "DotnetCoreBuild" ignore
339349
==> "CopyBinaries"
340350
==> "BuildOnly"
341351

342-
"Clean"
343-
==> "CleanDocs"
344-
==> "AssemblyInfo"
345-
==> "Build"
346-
==> "CopyBinaries"
347-
==> "RunTests"
348-
==> "BuildReleasePackages"
349-
==> "CIBuild"
350-
351352
"GenerateDocs"
352353
==> "ReleaseDocsLocal"
353354

0 commit comments

Comments
 (0)