Skip to content

Update CHANGELOG once again. #27

Update CHANGELOG once again.

Update CHANGELOG once again. #27

Workflow file for this run

name: release
on:
push:
tags:
- v*
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python 3.12
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Update PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org/ | python -
- name: Configure Poetry
run: poetry config virtualenvs.in-project true
- name: Build
run: poetry build
- name: Publish to PyPI
run: poetry publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}