Skip to content

Switch from setup.py to pyproject.toml (#59) #34

Switch from setup.py to pyproject.toml (#59)

Switch from setup.py to pyproject.toml (#59) #34

Workflow file for this run

name: PyPI release
on:
push:
branches:
- master
tags:
- 'v*'
jobs:
build-and-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build
run: python -m build
- name: Upload to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}