Skip to content

chore: Release v0.3.3 #4

chore: Release v0.3.3

chore: Release v0.3.3 #4

Workflow file for this run

name: Build
on:
push:
tags:
- '*'
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macOS-11]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v3
- name: Install Workflow Dependencies
run: python -m pip install twine cibuildwheel==2.16.5
- name: Build wheels
run: python -m cibuildwheel --output-dir dist
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
python -m twine upload dist/*