We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d0d34f commit b48614bCopy full SHA for b48614b
1 file changed
tools/releaseBuild/azureDevOps/templates/release-BuildJson.yml
@@ -25,7 +25,11 @@ steps:
25
$stableRelease = $metadata.StableRelease.Latest
26
$ltsRelease = $metadata.LTSRelease.Latest
27
28
- $buildInfo = Get-Content $jsonFile | ConvertFrom-Json
+ Write-Verbose -Verbose "Writing $jsonFile contents:"
29
+ $buildInfoJsonContent = Get-Content $jsonFile -Encoding UTF8NoBom -Raw
30
+ Write-Verbose -Verbose $buildInfoJsonContent
31
+
32
+ $buildInfo = $buildInfoJsonContent | ConvertFrom-Json
33
$buildInfo.ReleaseDate = $dateTime
34
35
$targetFile = "$ENV:PIPELINE_WORKSPACE/$fileName"
0 commit comments