Skip to content

Commit

Permalink
Ensure version are considered as strings
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapatwardhan committed Nov 9, 2022
1 parent 226ca56 commit 71d1273
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ steps:
"preview.md"
}
else {
$semanticVersion.Major + "." + $semanticVersion.Minor + ".md"
$semanticVersion.Major.ToString() + "." + $semanticVersion.Minor.ToString() + ".md"
}
$filePath = "$env:BUILD_SOURCESDIRECTORY/CHANGELOG/$fileName"
Expand Down

0 comments on commit 71d1273

Please sign in to comment.