Skip to content

fix(py39): drop zip(..., #1

fix(py39): drop zip(...,

fix(py39): drop zip(..., #1

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install and test
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
pytest -v
- name: Build distribution
run: |
pip install build
python -m build
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: dist/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}