Skip to content

Fix pypi publishing #18

Fix pypi publishing

Fix pypi publishing #18

Workflow file for this run

---
name: Release to PyPI
on:
push:
tags: [ "v*.*" ]
pull_request:
branches: ["main"]
jobs:
pypi:
name: Publish Release
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Make distribution
run: |
sudo apt-get update
sudo apt-get install cargo python-wheel-common
pip --version
python setup.py sdist
python setup.py bdist_wheel
- name: Publish on pypi (only for tag pushes)
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{secrets.PYPI_API_TOKEN}}
skip-existing: true