Skip to content

fix: gh actions

fix: gh actions #90

Workflow file for this run

name: CI & CD
on:
push:
tags: ["*"]
jobs:
build:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.13"
- name: Install Python tools
run: pip install poetry cibuildwheel
- name: Build wheels
run: cibuildwheel --output-dir dist
- name: Deploy wheels
run: |
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
poetry publish