Skip to content

Commit b64c4d7

Browse files
committed
YAML blows
1 parent 63d22e7 commit b64c4d7

2 files changed

Lines changed: 16 additions & 14 deletions

File tree

.claude/settings.local.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"Bash(gh api:*)",
1717
"Bash(gh search:*)",
1818
"Bash(gh issue:*)",
19-
"mcp__Mintlify__*",
19+
"mcp__Mintlify__*",
2020
"mcp__github__*",
2121
"mcp__playwright__*",
2222
"WebSearch",
@@ -27,7 +27,9 @@
2727
"WebFetch(domain:natemcmaster.github.io)",
2828
"WebFetch(domain:stackoverflow.com)",
2929
"WebFetch(domain:www.nuget.org)",
30-
"WebFetch(domain:www.anthropic.com)"
30+
"WebFetch(domain:www.anthropic.com)",
31+
"Bash(gh run:*)",
32+
"Bash(gh workflow:*)"
3133
],
3234
"deny": [],
3335
"ask": [],

.github/workflows/build-and-deploy.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -393,18 +393,18 @@ jobs:
393393
$packageList += "- [$packageName](https://www.nuget.org/packages/$packageName/$version)`n"
394394
}
395395
396-
$body = @"
397-
## NuGet Packages
398-
$packageList
399-
400-
## Installation
401-
``````xml
402-
<Project Sdk="DotNetDocs.Sdk/$version">
403-
<!-- That's it! -->
404-
</Project>
405-
``````
406-
"@
407-
396+
$lines = @(
397+
"## NuGet Packages",
398+
$packageList,
399+
"",
400+
"## Installation",
401+
'```xml',
402+
"<Project Sdk=""DotNetDocs.Sdk/$version"">",
403+
" <!-- That's it! -->",
404+
"</Project>",
405+
'```'
406+
)
407+
$body = $lines -join "`n"
408408
Set-Content -Path "./release-notes.md" -Value $body -Encoding utf8
409409
410410
- name: Create GitHub Release

0 commit comments

Comments
 (0)