Skip to content

Commit

Permalink
Fix PyPI upload
Browse files Browse the repository at this point in the history
[noissue]
  • Loading branch information
dralley committed Feb 9, 2024
1 parent cb6eaf8 commit c42ed8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/publish_client_pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fi

twine check dist/pulp_rpm_client-$VERSION-py3-none-any.whl || exit 1
twine check dist/pulp_rpm-client-$VERSION.tar.gz || exit 1
twine upload dist/pulp_rpm_client-$VERSION-py3-none-any.whl -u pulp -p $PYPI_PASSWORD
twine upload dist/pulp_rpm-client-$VERSION.tar.gz -u pulp -p $PYPI_PASSWORD
twine upload dist/pulp_rpm_client-$VERSION-py3-none-any.whl -u __token__ -p $PYPI_API_TOKEN
twine upload dist/pulp_rpm-client-$VERSION.tar.gz -u __token__ -p $PYPI_API_TOKEN

exit $?
4 changes: 2 additions & 2 deletions .github/workflows/scripts/publish_plugin_pypi.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pip install twine

twine check dist/pulp_rpm-$1-py3-none-any.whl || exit 1
twine check dist/pulp-rpm-$1.tar.gz || exit 1
twine upload dist/pulp_rpm-$1-py3-none-any.whl -u pulp -p $PYPI_PASSWORD
twine upload dist/pulp-rpm-$1.tar.gz -u pulp -p $PYPI_PASSWORD
twine upload dist/pulp_rpm-$1-py3-none-any.whl -u __token__ -p $PYPI_API_TOKEN
twine upload dist/pulp-rpm-$1.tar.gz -u __token__ -p $PYPI_API_TOKEN

exit $?

0 comments on commit c42ed8f

Please sign in to comment.