Skip to content

Finalizing release: Update README and exclude data files #1

Finalizing release: Update README and exclude data files

Finalizing release: Update README and exclude data files #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Build and upload to PyPI
uses: PyO3/maturin-action@v1
with:
command: upload
args: --release --out dist
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}