We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbf173 commit f9a879cCopy full SHA for f9a879c
.github/workflows/deploy.yaml
.github/workflows/release.yml
@@ -0,0 +1,30 @@
1
+catname: upload release to PyPI
2
+on:
3
+ release:
4
+ types:
5
+ - published
6
+
7
+jobs:
8
+ pypi-publish:
9
+ name: upload release to PyPI
10
+ runs-on: ubuntu-latest
11
+ environment: release
12
+ permissions:
13
+ id-token: write
14
+ contents: write
15
+ steps:
16
+ - uses: actions/[email protected]
17
+ with:
18
+ fetch-depth: 0
19
+ fetch-tags: true
20
21
22
23
+ python-version: 3.13
24
25
+ - name: Install build
26
+ run: |
27
+ pip install setuptools-scm wheel
28
29
+ - name: Publish package distributions to PyPI
30
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments