Skip to content

Publish Python 🐍 distributions 📦 to PyPI and TestPyPI #50

Publish Python 🐍 distributions 📦 to PyPI and TestPyPI

Publish Python 🐍 distributions 📦 to PyPI and TestPyPI #50

Workflow file for this run

name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on:
push:
tags: [v*]
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
poetry config virtualenvs.create false
- name: Configure Poetry
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_API_TOKEN }}
- name: Build and Publish package
run: poetry publish --build