File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 5
5
[
6
6
" @semantic-release/exec" ,
7
7
{
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"
9
9
}
10
10
]
11
11
],
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ class Build : NukeBuild
17
17
public static int Main ( ) => Execute < Build > ( x => x . Test ) ;
18
18
19
19
[ Parameter ( "Version of the nuget package to build." ) ] readonly string Version = string . Empty ;
20
- [ Parameter ( "Release notes to append." ) ] readonly string ReleaseNotes = string . Empty ;
21
20
22
21
string NugetVersion => Version . StartsWith ( "v" ) ? Version . Substring ( 1 ) : Version ;
23
22
@@ -65,7 +64,6 @@ class Build : NukeBuild
65
64
. Executes ( ( ) => DotNetPack ( s => s
66
65
. SetConfiguration ( Configuration . Release )
67
66
. SetVersion ( NugetVersion )
68
- . SetPackageReleaseNotes ( ReleaseNotes )
69
67
. SetOutputDirectory ( ArtifactsDirectory )
70
68
. CombineWith ( Projects , ( ss , proj ) => ss
71
69
. SetProject ( proj ) ) ) ) ;
You can’t perform that action at this time.
0 commit comments