Skip to content

v2.0.2

v2.0.2 #3

Workflow file for this run

name: Publish on PyPi
on:
release:
types: [ published ]
workflow_dispatch:
jobs:
publish:
if: "!github.event.release.prerelease"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python3 -m pip install -U pip setuptools wheel twine
pip3 install .
- name: Building
run: make build
- name: Publishing
run: "python3 -m twine upload dist/* -u __token__ -p '${{ secrets.PYPI_TOKEN }}'"