Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/workflows/deploy.yaml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
catname: upload release to PyPI
on:
release:
types:
- published

jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/[email protected]
with:
fetch-depth: 0
fetch-tags: true

- uses: actions/[email protected]
with:
python-version: 3.13

- name: Install build
run: |
pip install setuptools-scm wheel

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1