Skip to content

Commit

Permalink
chore: fix new line in release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ludndev committed Jul 18, 2024
1 parent 289acf0 commit bce6287
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,14 +118,14 @@ jobs:
$ISSUE_BODY = ""
if ('${{ needs.check-version.outputs.result }}' -eq 'false') {
$ISSUE_BODY += "## Version\n"
$ISSUE_BODY += "## Version`n"
$ISSUE_BODY += "Version mismatch detected between tag and Cargo.toml."
$ISSUE_BODY += " The release has been unpublished.\n"
$ISSUE_BODY += " The release has been unpublished.`n"
}
if ('${{ needs.check-last-commit.outputs.result }}' -eq 'false') {
$ISSUE_BODY += "## Tests\n"
$ISSUE_BODY += "The last commit does not have all successful tests.\n"
$ISSUE_BODY += "## Tests`n"
$ISSUE_BODY += "The last commit does not have all successful tests.`n"
$ISSUE_BODY += "${{ needs.check-last-commit.outputs.markdown_checks }}"
}
Expand Down

0 comments on commit bce6287

Please sign in to comment.