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.
pypi.yml
1 parent 5ebf6ec commit 9a58630Copy full SHA for 9a58630
.github/workflows/pypi.yml
@@ -16,10 +16,32 @@ permissions:
16
contents: read
17
18
jobs:
19
- deploy:
+ build_wheels:
20
+ name: Build wheels
21
+ runs-on: ubuntu-latest
22
+
23
+ steps:
24
+ - uses: actions/checkout@v4
25
26
+ - uses: actions/setup-python@v5
27
+ with:
28
+ python-version: '3.11'
29
30
+ - name: Build wheel
31
+ run: |
32
+ python -m pip install build
33
+ python -m build --wheel --sdist --outdir wheelhouse
34
35
+ - name: Store wheels
36
+ uses: actions/upload-artifact@v4
37
38
+ name: wheels
39
+ path: wheelhouse/*
40
41
+ deploy:
42
name: Upload wheels to PyPI
43
runs-on: ubuntu-latest
44
+ needs: build_wheels
45
46
permissions:
47
id-token: write
0 commit comments