Skip to content

v2.2.15

v2.2.15 #75

Workflow file for this run

name: Publish 🐍 📦 to PyPI
on:
release:
types: [created]
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.10.14
uses: actions/setup-python@v1
with:
python-version: 3.10.14
- name: Install wheel and setuptools
run: >-
python -m
pip install
wheel
setuptools
--user
--upgrade
- name: Build a binary wheel and a source tarball
run: >-
python3
setup.py
sdist
bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}