We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a856f41 commit 43c5e35Copy full SHA for 43c5e35
.github/workflows/build.yml
@@ -103,6 +103,15 @@ jobs:
103
with:
104
python-version: "3.9"
105
106
+ - name: Build SDist
107
+ if: matrix.os == 'ubuntu-latest'
108
+ run: |
109
+ pip install build
110
+ mkdir -p wheelhouse
111
+ cd packages/basemap
112
+ python -m build --sdist
113
+ mv dist/* ../../wheelhouse/
114
+
115
- name: Build wheels
116
uses: pypa/[email protected]
117
env:
@@ -119,7 +128,9 @@ jobs:
119
128
120
129
- uses: actions/upload-artifact@v4
121
130
122
- path: ./wheelhouse/*.whl
131
+ path: |
132
+ ./wheelhouse/*.whl
133
+ ./wheelhouse/*.tar.gz
123
134
name: wheels-basemap-${{ matrix.os }}
124
135
125
136
upload_pypi:
0 commit comments