Skip to content

Publish to PyPI

Publish to PyPI #18

Workflow file for this run

name: Publish to PyPI
on:
workflow_dispatch:
inputs:
version:
description: 'Version to release'
required: true
default: 'patch'
type: choice
options:
- 'major'
- 'minor'
- 'patch'
repository:
description: 'Repository to publish to'
required: true
default: 'testpypi'
type: choice
options:
- 'pypi'
- 'testpypi'
permissions:
contents: write
id-token: write
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
id: bump_version
run: |
poetry run python handle_versioning.py ${{ github.event.inputs.version }}
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add pyproject.toml
new_version=$(poetry run python handle_versioning.py read)
git commit -m "Bump version to $new_version"
git push
echo "latest_version=$new_version" >> $GITHUB_ENV
- name: Generate Release Notes
id: release-notes
uses: docker://decathlon/release-notes-generator-action:2.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
OUTPUT_FOLDER: temp_release_notes
USE_MILESTONE_TITLE: "true"
- name: Create tag
id: create_tags
run: |
current_version=${{env.latest_version}}
git tag $current_version
git push origin $current_version
- name: Create release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{env.latest_version}}
release_name: Release ${{env.latest_version}}
body: ${{ steps.release-notes.outputs.notes }}
draft: false
prerelease: false
- name: Build package
run: |
poetry build
- name: Publish to TestPyPI or PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: ${{ github.event.inputs.repository == 'pypi' && 'https://upload.pypi.org/legacy/' || 'https://test.pypi.org/legacy/' }}
username: __token__
password: ${{ github.event.inputs.repository == 'pypi' && secrets.PYPI_API_TOKEN || secrets.TEST_PYPI_API_TOKEN }}
env:
POETRY_PYPI_TOKEN: ${{ github.event.inputs.repository == 'pypi' && secrets.PYPI_POETRY_TOKEN || secrets.TEST_PYPI_POETRY_TOKEN }}