python-publish.yml 848 B

12345678910111213141516171819202122232425262728293031
  1. # This workflows will upload a Python Package using Twine when a release is created
  2. # For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
  3. name: pypi
  4. on:
  5. push:
  6. branches: [ master ]
  7. jobs:
  8. deploy:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - name: Set up Python
  13. uses: actions/setup-python@v2
  14. with:
  15. python-version: '3.x'
  16. - name: Install dependencies
  17. run: |
  18. python -m pip install --upgrade pip
  19. pip install setuptools wheel twine
  20. - name: Build and publish
  21. env:
  22. TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
  23. TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
  24. run: |
  25. python setup.py sdist bdist_wheel
  26. twine upload dist/*