Skip to content

0.2.4

0.2.4 #8

Workflow file for this run

name: Release
on:
release:
types: [published]
workflow_dispatch:
inputs:
version:
description: Version for publishing
required: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: main
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Get version
id: version
uses: actions/github-script@v7
with:
result-encoding: string
script: |
if (context.payload.inputs && context.payload.inputs.version) {
return context.payload.inputs.version
}
return context.ref.split('/').pop()
- name: Install builder
run: |
python -m pip install -U poetry pip
poetry config virtualenvs.create false
poetry install -n
- name: Install dependencies for publishing
run: |
python -m pip install -U setuptools wheel twine
- name: Bump version
env:
VERSION: ${{ steps.version.outputs.result }}
run: |
echo "Bumping version to ${VERSION}"
poetry version ${VERSION}
rm -rf *.egg-info || true
poetry install -n
- name: Commit changes
env:
VERSION: ${{ steps.version.outputs.result }}
run: |
git config --global user.email "[email protected]"
git config --global user.name "github-actions"
git add pyproject.toml
git commit -m "Release ${VERSION}"
git push
- name: Publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
poetry build
twine upload --non-interactive dist/*