Skip to content

0.5.22

0.5.22 #1

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
env:
POETRY_HOME: /opt/poetry
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install poetry
run: |
wget https://raw.githubusercontent.com/python-poetry/install.python-poetry.org/d62875fc05fb20062175cd14d19a96dbefa48640/install-poetry.py
python install-poetry.py --version 1.8.3
- name: Install dependencies
run: |
$POETRY_HOME/bin/poetry install
- name: Configure poetry for PyPI repository
run: |
$POETRY_HOME/bin/poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
- name: Build and publish package
run: |
$POETRY_HOME/bin/poetry publish --build