Publish to PyPI #2
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: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Version to release' | |
required: true | |
default: 'patch' | |
type: choice | |
options: | |
- 'major' | |
- 'minor' | |
- 'patch' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: '1.8.3' | |
- name: Install dependencies | |
run: poetry install | |
- name: Bump version | |
run: | | |
poetry run python handle_versioning.py ${{ github.event.inputs.version }} | |
git add pyproject.toml | |
git commit -m "Bump version to ${{ github.event.inputs.version }}" | |
git push | |
- name: Create tag | |
run: | | |
current_version=$(python -c "import toml; print(toml.load('pyproject.toml')['tool']['poetry']['version'])") | |
git tag $current_version | |
git push origin $current_version | |
- name: Publish to PyPI | |
env: | |
POETRY_PYPI_TOKEN: ${{ secrets.POETRY_PYPI_TOKEN }} | |
run: poetry publish --build |