We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d18de0 commit d9f9ca4Copy full SHA for d9f9ca4
.github/workflows/build_wheels.yml
@@ -3,6 +3,20 @@ name: Build
3
on: [push, pull_request]
4
5
jobs:
6
+ make_sdist:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ with:
11
+ fetch-depth: 0
12
+
13
+ - name: Build SDist
14
+ run: pipx run build --sdist
15
16
+ - uses: actions/upload-artifact@v3
17
18
+ path: dist/*.tar.gz
19
20
build_wheels:
21
name: Build wheels on ${{ matrix.os }}
22
runs-on: ${{ matrix.os }}
@@ -13,16 +27,9 @@ jobs:
27
steps:
28
- uses: actions/checkout@v3
29
- - name: Source distribution
- run: |
- pip3 install build
- python3 -m build -s
-
30
- name: Build wheels
31
uses: pypa/[email protected]
23
32
24
33
- uses: actions/upload-artifact@v3
25
34
with:
26
- path: |
- ./wheelhouse/*.whl
- ./dist/*.tar.gz
35
+ path: ./wheelhouse/*.whl
0 commit comments