Skip to content

Updte pre-commit dependencies + use ruff #4

Updte pre-commit dependencies + use ruff

Updte pre-commit dependencies + use ruff #4

Workflow file for this run

name: PyPI Publisher
on:
push:
tags:
- "*"
jobs:
Publish-to-PyPI:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dependencies
run: pip install wheel build
- name: Build Distribution packages
run: python -m build
- name: Publish a Python distribution to PyPI
uses: pypa/gh-action-pypi-publish@master
if: startsWith(github.ref, 'refs/tags/')
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}