Skip to content

Skip PyPy wheel builds #8

Skip PyPy wheel builds

Skip PyPy wheel builds #8

Workflow file for this run

name: PyPI
on:
push:
tags:
- v*.*.*
jobs:
pipeline:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Create source distribution
run: pipx run build --sdist
- name: Create (binary) wheel distributions
uses: pypa/[email protected]
with:
output-dir: dist
- name: Publish distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI }}