File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2525DOC_PATTERNS = [
2626 r"^docs/" ,
2727 r"\.md$" ,
28- r"\.txt$" ,
2928 r"LICENSE.*" ,
3029 r"CHANGELOG.*" ,
3130 r"CHANGES.*" ,
Original file line number Diff line number Diff line change @@ -167,8 +167,11 @@ jobs:
167167 pip install towncrier
168168
169169 - name : " Get release notes"
170- id : get_release_notes
170+ id : " get_release_notes"
171+ shell : " bash"
171172 run : |
173+ # The last commit before the release commit contains the release CHANGES fragments
174+ git checkout "${TAG_NAME}~"
172175 NOTES=$(towncrier build --draft --version $TAG_NAME)
173176 echo "body<<EOF" >> $GITHUB_OUTPUT
174177 echo "$NOTES" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ pushd pulp_python-client
2424python setup.py sdist bdist_wheel --python-tag py3
2525
2626twine check " dist/pulp_python_client-" * " -py3-none-any.whl"
27- twine check " dist/pulp_python-client -" * " .tar.gz"
27+ twine check " dist/pulp_python_client -" * " .tar.gz"
2828
2929tar cvf " ../../pulp_python/python-python-client.tar" ./dist
3030
You can’t perform that action at this time.
0 commit comments