Skip to content

Merge pull request #57 from haasad/deps/test-py3.12 #28

Merge pull request #57 from haasad/deps/test-py3.12

Merge pull request #57 from haasad/deps/test-py3.12 #28

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 }}