Skip to content

Commit b4f6282

Browse files
author
Christoph Bühler
committed
fix: remove release notes from pack
1 parent 15328e9 commit b4f6282

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.releaserc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[
66
"@semantic-release/exec",
77
{
8-
"prepareCmd": "./build.sh --no-logo --version ${nextRelease.version} --release-notes \"${nextRelease.notes}\" --target Pack"
8+
"prepareCmd": "./build.sh --no-logo --version ${nextRelease.version} --target Pack"
99
}
1010
]
1111
],

build/Build.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ class Build : NukeBuild
1717
public static int Main() => Execute<Build>(x => x.Test);
1818

1919
[Parameter("Version of the nuget package to build.")] readonly string Version = string.Empty;
20-
[Parameter("Release notes to append.")] readonly string ReleaseNotes = string.Empty;
2120

2221
string NugetVersion => Version.StartsWith("v") ? Version.Substring(1) : Version;
2322

@@ -65,7 +64,6 @@ class Build : NukeBuild
6564
.Executes(() => DotNetPack(s => s
6665
.SetConfiguration(Configuration.Release)
6766
.SetVersion(NugetVersion)
68-
.SetPackageReleaseNotes(ReleaseNotes)
6967
.SetOutputDirectory(ArtifactsDirectory)
7068
.CombineWith(Projects, (ss, proj) => ss
7169
.SetProject(proj))));

0 commit comments

Comments
 (0)