Skip to content

PyPI

PyPI #22

Workflow file for this run

name: PyPI
on:
push:
tags:
- v*.*.*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Poetry
uses: snok/[email protected]
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Publish to pypi
run: poetry publish --build
env:
POETRY_PYPI_TOKEN_PYPI: "${{ secrets.pypi_token }}"