Skip to content

MNT bump to 3.0.4

MNT bump to 3.0.4 #5

Workflow file for this run

name: PyPI
on:
push:
tags:
- "*.*.*"
jobs:
pypi:
name: Upload to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install --upgrade build
- run: python -m build
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_token }}