Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Build wheels

Build wheels #1

Workflow file for this run

name: Build wheels
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build-wheel:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, 3.10]
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build Wheel
run: |
python -m pip install wheel
python -m build --wheel .
- name: Upload Wheel
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist/*.whl