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 865f929 commit c76a130Copy full SHA for c76a130
build.cake
@@ -24,6 +24,11 @@ var nuGetApiKey =
24
EnvironmentVariable("NuGetApiKey") != null ? EnvironmentVariable("NuGetApiKey") :
25
null;
26
27
+if (TFBuild.IsRunningOnAzurePipelinesHosted)
28
+{
29
+ Information("BRANCH: " + TFBuild.Environment.Repository.Branch);
30
+}
31
+
32
var artifactsDirectory = Directory("./Artifacts");
33
var versionSuffix = string.IsNullOrEmpty(preReleaseSuffix) ? null : preReleaseSuffix + "-" + buildNumber.ToString("D4");
34
0 commit comments