Skip to content

Add GitHub Actions workflow for PyPI publishing #1

Add GitHub Actions workflow for PyPI publishing

Add GitHub Actions workflow for PyPI publishing #1

Workflow file for this run

name: Build and publish to PyPI
on:
push:
tags:
- '*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: JRubics/poetry-publish@v2.0
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}