File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -442,12 +442,16 @@ pipeline "Release" {
442
442
|> Seq.filter ( fun nupkg -> not ( nupkg.Contains( " Fantomas.Client" )))
443
443
|> Seq.toArray
444
444
445
+ let aotCompiledExecutableFiles =
446
+ [ " fantomas" ; " fantomas.dbg" ]
447
+ |> List.map ( fun file -> $" artifacts/publish/Fantomas/release_linux-x64/%s {file}" )
448
+
445
449
let! nugetExitCodes = nugetPackages |> Array.map pushPackage |> Async.Sequential
446
450
447
451
let notes = getReleaseNotes currentRelease lastRelease
448
452
let noteFile = Path.GetTempFileName()
449
453
File.WriteAllText( noteFile, notes)
450
- let files = nugetPackages |> String.concat " "
454
+ let files = [ yield ! nugetPackages; yield ! aotCompiledExecutableFiles ] |> String.concat " "
451
455
452
456
// We create a draft release for minor and majors. Those that requires a manual publish.
453
457
// This is to allow us to add additional release notes when it makes sense.
You can’t perform that action at this time.
0 commit comments