Skip to content

Commit c15d8d2

Browse files
committed
adding source dist
1 parent 12ed471 commit c15d8d2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build_wheels.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@ name: Build wheels
33
on: workflow_dispatch
44

55
jobs:
6+
build_sdist:
7+
name: Build source distribution
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Build sdist
13+
run: pipx run build --sdist
14+
15+
- uses: actions/upload-artifact@v4
16+
with:
17+
name: cibw-sdist
18+
path: dist/*.tar.gz
19+
620
build_wheels:
721
name: Build wheels on ${{ matrix.os }}
822
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)