0.5.22 #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |