Skip to content

✨ Allow xml conversion only and remove redundant mypy overrides #22

✨ Allow xml conversion only and remove redundant mypy overrides

✨ Allow xml conversion only and remove redundant mypy overrides #22

Workflow file for this run

# This workflow will publish to PyPI
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Publish to PyPI
on:
release:
types:
- published
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
pip3 install -U pip setuptools poetry
- name: Build package
run: |
poetry config http-basic.pypi ${{ secrets.PYPI_USER }} ${{ secrets.PYPI_PASS }}
poetry build
- name: Publish package
run: |
poetry publish