Skip to content

remove wrong annotation #14

remove wrong annotation

remove wrong annotation #14

Workflow file for this run

name: Publish Python Package
on:
push:
branches:
- main
tags:
- 'v*' # Only publish on version tags (e.g., v1.0.0)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --no-root
- name: Build package
run: poetry build
- name: Publish to PyPI
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: poetry publish --username __token__ --password $PYPI_TOKEN