We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a follow-up on #1970.
At the moment, when I create a git tag it properly creates + uploads the package to PyPI.
git tag
It also creates a Github release with the correct title. But the body is missing.
See also: https://stackoverflow.com/q/76699485/562769
The text was updated successfully, but these errors were encountered:
DEV: Fix Github Action release.yaml
b26c4ce
Struggling with multiline environment variables See github/docs#21529 See #1971
DEV: Add body to created GitHub release (#1985)
6df64af
PR fixes that new GitHub releases were lacking a body, where this was due to the fact that we were not outputting `tag_body` to `$GITHUB_ENV` so that it wasn't available in follow-up steps. However, because the body is a multiline string, we've got to wrap it in special syntax to get it to work (see [docs](https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#example-of-a-multiline-string) for example). See https://github.com/py-pdf/pypdf/actions/runs/5601580443/jobs/10245662760?pr=1985 as an example test run that shows it working in a test workflow. Closes #1971
MartinThoma
Successfully merging a pull request may close this issue.
This is a follow-up on #1970.
At the moment, when I create a
git tag
it properly creates + uploads the package to PyPI.It also creates a Github release with the correct title. But the body is missing.
See also: https://stackoverflow.com/q/76699485/562769
The text was updated successfully, but these errors were encountered: