1.2.6 (layer_v13) #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will upload the package to Live Registry of PyPI when a release is created. | |
| # The package will be published here: https://pypi.org/project/codeguru-profiler-agent/ | |
| # For more information see: https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-python#publishing-to-package-registries | |
| name: Publish to Live PyPI | |
| on: | |
| release: | |
| types: [released] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v3 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install setuptools wheel twine | |
| - name: Build and publish | |
| env: | |
| TWINE_USERNAME: '__token__' | |
| TWINE_PASSWORD: ${{ secrets.PYPI_LIVE_PASSWORD }} | |
| run: | | |
| python setup.py sdist bdist_wheel | |
| twine check dist/* | |
| twine upload --verbose dist/* |