Skip to content

improve release action #5

improve release action

improve release action #5

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/[email protected]
with:
python_version: "3.9.17"
poetry_install_options: "--without dev"
pypi_token: ${{ secrets.PYPI_API_TOKEN }}