We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1945c4 commit 01870d5Copy full SHA for 01870d5
.github/workflows/release.yaml
@@ -55,10 +55,10 @@ jobs:
55
56
if [ -n "$content" ]; then
57
echo "::notice::Found release notes for ${target_version}"
58
- echo "RELEASE_NOTES=$content" >> $GITHUB_ENV
+ echo "$content" >> release-notes.md
59
else
60
echo "::warning::Did not find release notes for ${target_version}"
61
- echo "RELEASE_NOTES=" >> $GITHUB_ENV
+ touch release-notes.md
62
fi
63
64
- name: Download packages built by build-and-inspect-python-package
@@ -72,7 +72,7 @@ jobs:
72
with:
73
files: dist/*
74
tag_name: "${{ env.TAG_NAME }}"
75
- body: "${{ env.RELEASE_NOTES }}"
+ body_path: release-notes.md
76
77
# Upload to real PyPI on GitHub Releases.
78
release-pypi:
0 commit comments