Skip to content

bump version to 0.2.1 #1

bump version to 0.2.1

bump version to 0.2.1 #1

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*.*.*"
jobs:
publish:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: ["3.9"]
poetry-version: ["1.7.0"]
steps:
- uses: actions/checkout@v4
- uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry build -f wheel
poetry publish -u __token__ -p $PYPI_TOKEN