We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 319a8a6 commit b1fbf9bCopy full SHA for b1fbf9b
1 file changed
.github/workflows/auto-release.yaml
@@ -103,14 +103,8 @@ jobs:
103
run: |
104
TAG="${{ steps.changelog.outputs.tag }}"
105
106
- # Update release body to add PyPI link
107
- echo "" >> release_body.txt
108
- echo "**PyPI:** 📦 Published to [PyPI](https://pypi.org/project/pgmob/${{ steps.changelog.outputs.version }}/)" >> release_body.txt
109
-
110
- # Publish the draft release
111
- gh release edit "$TAG" \
112
- --draft=false \
113
- --notes-file release_body.txt
+ # Just publish the draft release without changing the body
+ gh release edit "$TAG" --draft=false
114
115
- name: Release Published
116
if: steps.check_release.outputs.exists == 'false'
0 commit comments