Skip to content

Commit 9b36db6

Browse files
committed
(build) update cake to 0.38.5 (2)
1 parent 36b132e commit 9b36db6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/publish.cake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ Task("Publish-AzurePipeline")
3535
{
3636
foreach(var artifact in parameters.Artifacts.All)
3737
{
38-
if (FileExists(artifact.ArtifactPath)) { TFBuild.Commands.UploadArtifact("", artifact.ArtifactPath, "artifacts"); }
38+
if (FileExists(artifact.ArtifactPath)) { AzurePipelines.Commands.UploadArtifact("", artifact.ArtifactPath, "artifacts"); }
3939
}
4040
foreach(var package in parameters.Packages.All)
4141
{
42-
if (FileExists(package.PackagePath)) { TFBuild.Commands.UploadArtifact("", package.PackagePath, "packages"); }
42+
if (FileExists(package.PackagePath)) { AzurePipelines.Commands.UploadArtifact("", package.PackagePath, "packages"); }
4343
}
4444
})
4545
.OnError(exception =>

0 commit comments

Comments
 (0)