Skip to content

v1.6.5

v1.6.5 #23

Workflow file for this run

# https://github.com/marketplace/actions/publish-python-poetry-package
name: PyPi Package
on:
push:
tags:
- "v*.*.*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v2.0
with:
python_version: ${{ env.PYTHON_VERSION }}
pypi_token: ${{ secrets.PYPI_TOKEN }}