Skip to content

Bugfix support for multiple marked version constraints #17

Bugfix support for multiple marked version constraints

Bugfix support for multiple marked version constraints #17

Workflow file for this run

name: publish
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- 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==1.8.3
- name: Poetry install
run: poetry install
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry version ${{ github.event.release.tag_name }}
poetry build
poetry run twine upload dist/*