-
Notifications
You must be signed in to change notification settings - Fork 907
Open
Labels
Description
As a follow up to #598 , we identified an action item to update the build_a_package.sh script to install the built Python package before we publish it to PyPi just to be sure that everything is working correctly.
Specifically, we want to add a step to download the package before we publish it to PyPi here:
opentelemetry-python-contrib/.github/workflows/publish-a-package.yml
Lines 24 to 31 in d9c0116
| # We don't need to publish to TestPyPI because we only publish 1 package. | |
| # If it fails no other work needs to be reversed. | |
| - name: Publish to PyPI | |
| env: | |
| TWINE_USERNAME: '__token__' | |
| TWINE_PASSWORD: ${{ secrets.pypi_password }} | |
| run: | | |
| twine upload --skip-existing --verbose dist/* |
Reactions are currently unavailable