diff --git a/.github/workflows/create-release-tag.yml b/.github/workflows/create-release-tag.yml index 47f6c82..c50abab 100644 --- a/.github/workflows/create-release-tag.yml +++ b/.github/workflows/create-release-tag.yml @@ -53,16 +53,16 @@ jobs: ' CHANGELOG.md > release_notes.md # Append install instructions - cat >> release_notes.md << 'EOF' - ---- - -**PyPI:** https://pypi.org/project/claude-agent-sdk/VERSION/ - -```bash -pip install claude-agent-sdk==VERSION -``` -EOF + { + echo "" + echo "---" + echo "" + echo "**PyPI:** https://pypi.org/project/claude-agent-sdk/VERSION/" + echo "" + echo '```bash' + echo "pip install claude-agent-sdk==VERSION" + echo '```' + } >> release_notes.md # Replace VERSION placeholder sed -i "s/VERSION/$VERSION/g" release_notes.md