Skip to content

Commit

Permalink
[CI] Fixed Linux artifact packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
flyingpie committed Sep 5, 2024
1 parent 90c8d62 commit 3bf8d1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/01-Build/NukeBuild/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public sealed class Build : NukeBuild
st.ZipTo(
PathToLinux64FrameworkDependentZip,
filter: x => x.HasExtension(".exe", ".jsonc"),
filter: x => !x.HasExtension(".xml"),
compressionLevel: CompressionLevel.SmallestSize,
fileMode: System.IO.FileMode.CreateNew);
});
Expand All @@ -178,7 +178,7 @@ public sealed class Build : NukeBuild
staging.ZipTo(
PathToLinux64SelfContainedZip,
filter: x => x.HasExtension(".exe", ".jsonc"),
filter: x => !x.HasExtension(".xml"),
compressionLevel: CompressionLevel.SmallestSize,
fileMode: System.IO.FileMode.CreateNew);
});
Expand Down

0 comments on commit 3bf8d1b

Please sign in to comment.