Skip to content

!feat: bump minimum python version (#29) #6

!feat: bump minimum python version (#29)

!feat: bump minimum python version (#29) #6

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
id: checkout
- name: Setup
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Dependencies
run: |
pip install .
pip install setuptools wheel twine
- name: Deploy
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
env:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_USERNAME: kronenthaler