Skip to content

delete test pypi. Use the original pypi only #7

delete test pypi. Use the original pypi only

delete test pypi. Use the original pypi only #7

Workflow file for this run

name: Publishing
on: [push]
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# retrieve your distributions here
- name: Checkout
uses: actions/checkout@v4
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1