Skip to content

Commit d753e2e

Browse files
committed
fix linebreaks in nuget readme
1 parent 7f13a92 commit d753e2e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/release-nuget.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
with:
1919
dotnet-version: '9.x'
2020

21+
- name: Replace <br> in README.md with two spaces for nuget.org
22+
run: |
23+
$content = Get-Content -Path README.md -Raw
24+
$content = $content -replace "<br>", " "
25+
Set-Content -Path README.md -Value $content
26+
2127
- name: dotnet build
2228
run: dotnet build --configuration Release
2329

0 commit comments

Comments
 (0)