We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f13a92 commit d753e2eCopy full SHA for d753e2e
.github/workflows/release-nuget.yml
@@ -18,6 +18,12 @@ jobs:
18
with:
19
dotnet-version: '9.x'
20
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
+
27
- name: dotnet build
28
run: dotnet build --configuration Release
29
0 commit comments