Skip to content

Bump version: 0.8.3 → 0.9.1 #21

Bump version: 0.8.3 → 0.9.1

Bump version: 0.8.3 → 0.9.1 #21

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- 'v*'
jobs:
build-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Set up Python 3.11
uses: actions/[email protected]
with:
python-version: 3.11
- name: Install setuptools
run: |
pip install -U setuptools
- name: Build source archive
run: |
python setup.py sdist
- name: Publish 📦 PyPi
uses: pypa/[email protected]
with:
password: ${{ secrets.pypi_password }}