chore: publish from main

This commit is contained in:
github-actions[bot]
2026-08-07 02:02:16 +00:00
parent 50ca8aa0f8
commit 9743b7c263
39 changed files with 74 additions and 73 deletions
+4 -4
View File
@@ -351,7 +351,7 @@ EOF
)"
```
```PowerShell
````PowerShell
# Create PR body using here-string (preserves actual newlines, not escape sequences)
$prBody = @"
## Release vX.Y.Z
@@ -367,16 +367,16 @@ This PR prepares the **vX.Y.Z** release.
- [ ] CI passing
After merging, create the tag on the merge commit:
``````
```
git tag vX.Y.Z <merge-commit-sha>
git push origin vX.Y.Z
``````
```
"@
# Write to file and use --body-file (do NOT use inline --body with escape sequences)
$prBody | Out-File -FilePath release_pr_body.md -Encoding utf8 -NoNewline
gh pr create --base main --head release/vX.Y.Z --title "Release vX.Y.Z" --body-file release_pr_body.md
```
````
Paste the changelog section into the PR body's "What's included" block (or leave placeholder for manual review).