2021-12-22 08:36:16 +03:00
|
|
|
name: Publish to PyPI
|
2021-12-15 09:19:01 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
2021-12-22 08:36:16 +03:00
|
|
|
- 'v*'
|
2021-12-15 09:19:01 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish_to_pypi:
|
2021-12-16 08:37:52 +03:00
|
|
|
name: Push Package to PyPI
|
2021-12-15 09:19:01 +03:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repo
|
2022-02-27 01:22:55 +03:00
|
|
|
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
|
2021-12-15 09:19:01 +03:00
|
|
|
|
2021-12-23 07:17:19 +03:00
|
|
|
- name: Set up Python
|
2022-02-27 01:22:55 +03:00
|
|
|
uses: actions/setup-python@7f80679172b057fc5e90d70d197929d454754a5a
|
2021-12-23 07:17:19 +03:00
|
|
|
with:
|
|
|
|
python-version: '3.x'
|
2021-12-16 08:37:52 +03:00
|
|
|
|
2021-12-23 07:17:19 +03:00
|
|
|
- name: Install dependencies
|
2021-12-31 09:06:42 +03:00
|
|
|
run: pip install build
|
2021-12-15 09:19:01 +03:00
|
|
|
|
|
|
|
- name: Build package
|
2021-12-31 09:06:42 +03:00
|
|
|
run: python -m build
|
2021-12-15 09:19:01 +03:00
|
|
|
|
|
|
|
- name: Publish to PyPI
|
2022-02-27 01:22:55 +03:00
|
|
|
uses: pypa/gh-action-pypi-publish@717ba43cfbb0387f6ce311b169a825772f54d295
|
2021-12-15 09:19:01 +03:00
|
|
|
with:
|
|
|
|
user: __token__
|
|
|
|
password: ${{ secrets.PYPI_API_TOKEN }}
|