Skip to content

Commit

Permalink
DEVOPS-919 - artifact name fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MASTER\JiriS committed Apr 12, 2018
1 parent 0d7a30e commit 293908c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/publish.vsts.cake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Task("Publish")
Zip(tempPublishDirectory, publishArchive);
DeleteDirectory(tempPublishDirectory, recursive: true);
Information($"##vso[artifact.upload containerfolder=projectName;artifactname=projectName;]{MakeAbsolute(File(publishArchive))}");
Information($"##vso[artifact.upload containerfolder={projectName};artifactname={projectName};]{MakeAbsolute(File(publishArchive))}");
});


Expand Down

0 comments on commit 293908c

Please sign in to comment.