Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,11 @@ jobs:
pip install towncrier

- name: "Get release notes"
id: get_release_notes
id: "get_release_notes"
shell: "bash"
run: |
# The last commit before the release commit contains the release CHANGES fragments
git checkout "${TAG_NAME}~"
NOTES=$(towncrier build --draft --version $TAG_NAME)
echo "body<<EOF" >> $GITHUB_OUTPUT
echo "$NOTES" >> $GITHUB_OUTPUT
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scripts/build_python_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pushd pulpcore-client
python setup.py sdist bdist_wheel --python-tag py3

twine check "dist/pulpcore_client-"*"-py3-none-any.whl"
twine check "dist/pulpcore-client-"*".tar.gz"
twine check "dist/pulpcore_client-"*".tar.gz"

tar cvf "../../pulpcore/core-python-client.tar" ./dist

Expand Down Expand Up @@ -59,7 +59,7 @@ pushd pulp_file-client
python setup.py sdist bdist_wheel --python-tag py3

twine check "dist/pulp_file_client-"*"-py3-none-any.whl"
twine check "dist/pulp_file-client-"*".tar.gz"
twine check "dist/pulp_file_client-"*".tar.gz"

tar cvf "../../pulpcore/file-python-client.tar" ./dist

Expand Down Expand Up @@ -94,7 +94,7 @@ pushd pulp_certguard-client
python setup.py sdist bdist_wheel --python-tag py3

twine check "dist/pulp_certguard_client-"*"-py3-none-any.whl"
twine check "dist/pulp_certguard-client-"*".tar.gz"
twine check "dist/pulp_certguard_client-"*".tar.gz"

tar cvf "../../pulpcore/certguard-python-client.tar" ./dist

Expand Down