Skip to content

Publish to pip on tagged versions of main. (#12) #1

Publish to pip on tagged versions of main. (#12)

Publish to pip on tagged versions of main. (#12) #1

Workflow file for this run

name: Python package
on:
push:
branches:
- main
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build and publish to pypi
uses: JRubics/poetry-publish@v1.17
with:
python_version: "3.10"
poetry_version: "==1.2.2"
pypi_token: ${{ secrets.PYPI_TOKEN }}