Skip to content

Commit

Permalink
[repo] Fix automation creating releases without changelog content (#1879
Browse files Browse the repository at this point in the history
)
  • Loading branch information
CodeBlanch authored Jun 11, 2024
1 parent a857d7d commit e456b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/post-release.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function CreateRelease {

foreach ($line in $changelogContent)
{
if ($line -like "## $packageVersion" -and $started -ne $true)
if ($line -like "## $version" -and $started -ne $true)
{
$started = $true
}
Expand Down

0 comments on commit e456b23

Please sign in to comment.