Skip to content

Publish to PyPI

Publish to PyPI #35

# https://github.com/marketplace/actions/pypi-publish
name: Publish to PyPI
on:
push:
tags: # Only publish on tagged commits
- "*"
jobs:
build-and-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/qcop/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Check out source repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Build distribution 📦
run: poetry build
- name: Publish package 📤 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1