Skip to content

1.2.6 (layer_v13)

1.2.6 (layer_v13) #18

# This workflow will upload the package to Test Registry of PyPI when a pre-release is created.
# The package will be published here: https://test.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 Test PyPI
on:
release:
types: [prereleased]
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_TEST_PASSWORD }}
TWINE_REPOSITORY_URL: 'https://test.pypi.org/legacy/'
run: |
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --verbose dist/*