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.
2 parents 6b23c5b + 9884052 commit c3e90afCopy full SHA for c3e90af
.github/workflows/release.yml
@@ -0,0 +1,27 @@
1
+name: release
2
+on:
3
+ release:
4
+ types: [published]
5
+jobs:
6
+ publish:
7
+ runs-on: ubuntu-latest
8
+ permissions:
9
+ contents: read
10
+ id-token: write
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v6
14
+ with:
15
+ # Tags are needed to compute the current version number
16
+ fetch-depth: 0
17
+ lfs: true
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v6
20
+ - name: Install Python build
21
+ run: |
22
+ pip install build
23
+ - name: Build the Python distribution
24
25
+ python -m build
26
+ - name: Publish the Python distributions to PyPI
27
+ uses: pypa/gh-action-pypi-publish@release/v1
.python-version
@@ -0,0 +1 @@
+3.10
0 commit comments