Skip to content

Commit 1d943b1

Browse files
AndersonBYclaude
andcommitted
fix: correct heredoc syntax in release workflow
Use proper syntax for passing arguments to Python via heredoc 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 42b68bc commit 1d943b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
# Try to extract changelog from CHANGELOG.md first
5454
if [ -f "CHANGELOG.md" ]; then
5555
# Look for the version section in CHANGELOG.md
56-
python3 << 'EOF' "$VERSION" > release_notes.md
56+
python3 - "$VERSION" << 'EOF' > release_notes.md
5757
import re
5858
import sys
5959

0 commit comments

Comments
 (0)