We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b132e commit 9b36db6Copy full SHA for 9b36db6
build/publish.cake
@@ -35,11 +35,11 @@ Task("Publish-AzurePipeline")
35
{
36
foreach(var artifact in parameters.Artifacts.All)
37
38
- if (FileExists(artifact.ArtifactPath)) { TFBuild.Commands.UploadArtifact("", artifact.ArtifactPath, "artifacts"); }
+ if (FileExists(artifact.ArtifactPath)) { AzurePipelines.Commands.UploadArtifact("", artifact.ArtifactPath, "artifacts"); }
39
}
40
foreach(var package in parameters.Packages.All)
41
42
- if (FileExists(package.PackagePath)) { TFBuild.Commands.UploadArtifact("", package.PackagePath, "packages"); }
+ if (FileExists(package.PackagePath)) { AzurePipelines.Commands.UploadArtifact("", package.PackagePath, "packages"); }
43
44
})
45
.OnError(exception =>
0 commit comments