File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 5757 with :
5858 if-no-files-found : warn
5959 name : package
60- path : artifacts /nuget/**/*
60+ path : artifact /nuget/**/*
Original file line number Diff line number Diff line change @@ -25,4 +25,4 @@ Thumbs.db
2525
2626# cake
2727.cake /
28- /artifacts /*
28+ /artifact /*
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ var buildVersion = MinVer(s => s.WithTagPrefix("v").WithDefaultPreReleasePhase("
77Task ( "clean" )
88 . Does ( ( ) =>
99{
10- CleanDirectories ( "./artifacts /**" ) ;
10+ CleanDirectories ( "./artifact /**" ) ;
1111 CleanDirectories ( "./**/^{bin,obj}" ) ;
1212} ) ;
1313
@@ -67,7 +67,7 @@ Task("pack")
6767 Configuration = "Release" ,
6868 NoRestore = true ,
6969 NoBuild = true ,
70- OutputDirectory = "./artifacts /nuget" ,
70+ OutputDirectory = "./artifact /nuget" ,
7171 MSBuildSettings = new DotNetCoreMSBuildSettings ( )
7272 . WithProperty ( "Version" , buildVersion . Version )
7373 . WithProperty ( "PackageReleaseNotes" , releaseNotes )
@@ -98,7 +98,7 @@ Task("push")
9898 ApiKey = apiKey ,
9999 } ;
100100
101- foreach ( var nugetPackageFile in GetFiles ( "./artifacts /nuget/*.nupkg" ) )
101+ foreach ( var nugetPackageFile in GetFiles ( "./artifact /nuget/*.nupkg" ) )
102102 {
103103 DotNetCoreNuGetPush ( nugetPackageFile . FullPath , nugetPushSettings ) ;
104104 }
You can’t perform that action at this time.
0 commit comments