File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -111,8 +111,8 @@ Task("Create-Release-Notes")
111
111
{
112
112
var releaseNotesExitCode = StartProcess (
113
113
@"tools\GitReleaseNotes\tools\gitreleasenotes.exe" ,
114
- new ProcessSettings { Arguments = ". /o artifacts /releasenotes.md" } ) ;
115
- if ( string . IsNullOrEmpty ( System . IO . File . ReadAllText ( "./artifacts /releasenotes.md" ) ) )
114
+ new ProcessSettings { Arguments = ". /o build /releasenotes.md" } ) ;
115
+ if ( string . IsNullOrEmpty ( System . IO . File . ReadAllText ( "./build /releasenotes.md" ) ) )
116
116
System . IO . File . WriteAllText ( "./build/releasenotes.md" , "No issues closed since last release" ) ;
117
117
118
118
if ( releaseNotesExitCode != 0 ) throw new Exception ( "Failed to generate release notes" ) ;
@@ -126,7 +126,7 @@ Task("Upload-AppVeyor-Artifacts")
126
126
. WithCriteria ( ( ) => BuildSystem . AppVeyor . IsRunningOnAppVeyor )
127
127
. Does ( ( ) =>
128
128
{
129
- System . IO . File . WriteAllLines ( outputDir + " artifacts", new [ ] {
129
+ System . IO . File . WriteAllLines ( "build/ artifacts", new [ ] {
130
130
"NuGetExeBuild:GitVersion.Portable." + nugetVersion + ".nupkg" ,
131
131
"NuGetCommandLineBuild:GitVersion.CommandLine." + nugetVersion + ".nupkg" ,
132
132
"NuGetRefBuild:GitVersion." + nugetVersion + ".nupkg" ,
You can’t perform that action at this time.
0 commit comments