Skip to content

update version

update version #28

Workflow file for this run

name: Build Wheel
# run on new version tag
on:
push:
tags:
- v*
workflow_dispatch:
jobs:
job:
name: Build wheel
runs-on: ubuntu-latest
steps:
- name: Prepare python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install python dependencies
run: pip install build
- name: Checkout repository
uses: actions/checkout@v4
- name: Build wheel
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}