Skip to content

Update README.md

Update README.md #3549

name: Publish Python to PyPI
on: push
jobs:
build:
name: Build and publish Python to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
architecture: 'x64'
- name: install pypa/build
run: >-
python -m
pip install
build
--user
- name: build wheel
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish package to pypi
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}