Skip to content

1.1.0

1.1.0 #40

Workflow file for this run

name: Publish package to pypi
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install uv
python -m pip install build
python -m pip install twine
python -m uv pip install .
- name: Publish a project to PyPi
run: |
python -m build --sdist --wheel
twine upload dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN}}