Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

0.5.1

0.5.1 #89

Workflow file for this run

name: Release to PYPI
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: python3 -m pip install --upgrade pip build twine
- name: Build python package
run: python3 -m build
- name: Release python package to PYPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
TWINE_REPOSITORY: pypi
run: python3 -m twine upload dist/*