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 745cb8e commit 3efac41Copy full SHA for 3efac41
1 file changed
.github/workflows/build.yml
@@ -13,6 +13,21 @@ on:
13
branches: [main]
14
15
jobs:
16
+ build_sdist:
17
+ name: Build source
18
+ runs-on: ubuntu-latest
19
+ strategy:
20
+ fail-fast: false
21
+ steps:
22
+ - uses: actions/checkout@master
23
+ with:
24
+ submodules: "recursive"
25
+
26
+ - name: Build source and wheel
27
+ run: |
28
+ python -m pip install build
29
+ python -m build --sdist -o wheelhouse
30
31
build_wheels:
32
name: Building wheels on ${{ matrix.os }}
33
runs-on: ${{ matrix.os }}
@@ -34,11 +49,6 @@ jobs:
34
49
env:
35
50
CIBW_SKIP: "pp38-*"
36
51
37
- - name: Build source
38
- run: |
39
- python -m pip install build
40
- python -m build --sdist -o wheelhouse
41
-
42
52
- name: Upload wheels
43
53
uses: actions/upload-artifact@v4
44
54
with:
0 commit comments