Skip to content

v1.4.2

v1.4.2 #13

Workflow file for this run

name: Upload to PyPI
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: '3.x'
- name: Install build
run: python -m pip install build
- name: Build sdist and wheel
run: python -m build
- name: Upload to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}