Skip to content

do not group docs / paginate search results (#20) #23

do not group docs / paginate search results (#20)

do not group docs / paginate search results (#20) #23

Workflow file for this run

name: Publish to PyPi
on:
push:
tags:
- '*'
jobs:
publish-to-pypi:
name: Publish to PyPi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Publish package
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
PIP_DEFAULT_TIMEOUT: '100'
run: |
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --build