Skip to content

"Bump version to 0.2.20 in pyproject.toml and __init__.py" #74

"Bump version to 0.2.20 in pyproject.toml and __init__.py"

"Bump version to 0.2.20 in pyproject.toml and __init__.py" #74

name: Publish Python Package to PyPI
on:
push:
branches: [master]
jobs:
pypi-publish:
name: upload release to Pypi
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1