Skip to content

Update pre-commit workflow #1

Update pre-commit workflow

Update pre-commit workflow #1

name: Create Release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
create_release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org/ | python -
- name: Build packages
run: poetry build -f wheel
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: dist/*.whl