2020-05-01 16:04:36 +03:00
|
|
|
name: 🚀 Deploy to PyPI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-05-03 13:25:16 +03:00
|
|
|
- uses: actions/checkout@v3
|
2023-05-04 15:19:24 +03:00
|
|
|
- name: Set up Python 3.11
|
2023-05-03 13:25:16 +03:00
|
|
|
uses: actions/setup-python@v4
|
2020-05-01 16:04:36 +03:00
|
|
|
with:
|
2023-05-04 15:19:24 +03:00
|
|
|
python-version: '3.11'
|
2020-05-01 16:04:36 +03:00
|
|
|
- name: Build wheel and source tarball
|
|
|
|
run: |
|
2020-05-09 14:37:47 +03:00
|
|
|
pip install wheel
|
2020-05-01 16:04:36 +03:00
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
- name: Publish a Python distribution to PyPI
|
2023-05-03 13:25:16 +03:00
|
|
|
uses: pypa/gh-action-pypi-publish@v1.8.6
|
2020-05-01 16:04:36 +03:00
|
|
|
with:
|
|
|
|
user: __token__
|
|
|
|
password: ${{ secrets.pypi_password }}
|