Skip to content

5.0.0b6

5.0.0b6 #159

Workflow file for this run

name: PyPI Publish
on:
release:
types: [published]
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install tools
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel
- name: Build Package
run: make build
- name: Publish Package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true
print-hash: true