Skip to content

update poetry lock

update poetry lock #3

Workflow file for this run

name: Publish to PyPi
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '[0-9]+.[0-9]+'
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